summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/fatal
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/core/hle/service/fatal
parentProperly rename fatal module functions (diff)
downloadyuzu-536cfb13e6fb3ec5fb626d62784162b21569c073.tar
yuzu-536cfb13e6fb3ec5fb626d62784162b21569c073.tar.gz
yuzu-536cfb13e6fb3ec5fb626d62784162b21569c073.tar.bz2
yuzu-536cfb13e6fb3ec5fb626d62784162b21569c073.tar.lz
yuzu-536cfb13e6fb3ec5fb626d62784162b21569c073.tar.xz
yuzu-536cfb13e6fb3ec5fb626d62784162b21569c073.tar.zst
yuzu-536cfb13e6fb3ec5fb626d62784162b21569c073.zip
Diffstat (limited to 'src/core/hle/service/fatal')
-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;