summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorgreggameplayer <33609333+greggameplayer@users.noreply.github.com>2018-05-18 23:30:56 +0200
committerGitHub <noreply@github.com>2018-05-18 23:30:56 +0200
commit536cfb13e6fb3ec5fb626d62784162b21569c073 (patch)
tree5558de46ce27612fa0ab593554a223aa9f0e6efc /src
parente35cfc1b039abedd3ded7de66da8361c39e75c28 (diff)
Properly update fatal.h void name
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/fatal/fatal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/fatal/fatal.h b/src/core/hle/service/fatal/fatal.h
index 2d8d08320..5bd111a14 100644
--- a/src/core/hle/service/fatal/fatal.h
+++ b/src/core/hle/service/fatal/fatal.h
@@ -14,8 +14,8 @@ public:
public:
Interface(std::shared_ptr<Module> module, const char* name);
- void FatalSimple(Kernel::HLERequestContext& ctx);
- void TransitionToFatalError(Kernel::HLERequestContext& ctx);
+ void ThrowFatalWithPolicy(Kernel::HLERequestContext& ctx);
+ void ThrowFatalWithCpuContext(Kernel::HLERequestContext& ctx);
protected:
std::shared_ptr<Module> module;