diff options
author | greggameplayer <33609333+greggameplayer@users.noreply.github.com> | 2018-05-18 23:30:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-18 23:30:56 +0200 |
commit | 536cfb13e6fb3ec5fb626d62784162b21569c073 (patch) | |
tree | 5558de46ce27612fa0ab593554a223aa9f0e6efc /src | |
parent | Properly rename fatal module functions (diff) | |
download | yuzu-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 '')
-rw-r--r-- | src/core/hle/service/fatal/fatal.h | 4 |
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; |