diff options
author | greggameplayer <33609333+greggameplayer@users.noreply.github.com> | 2018-05-18 23:32:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-18 23:32:22 +0200 |
commit | abe79b27241e73cf9531301fa4c88106ed042a80 (patch) | |
tree | 6ddd164f9752acb9323e85015b117e1d97e09483 /src | |
parent | 536cfb13e6fb3ec5fb626d62784162b21569c073 (diff) |
rename fatal:u functions & add ThrowFatal
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/fatal/fatal_u.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/service/fatal/fatal_u.cpp b/src/core/hle/service/fatal/fatal_u.cpp index 26aa9f3b7..f0631329e 100644 --- a/src/core/hle/service/fatal/fatal_u.cpp +++ b/src/core/hle/service/fatal/fatal_u.cpp @@ -8,8 +8,9 @@ namespace Service::Fatal { Fatal_U::Fatal_U(std::shared_ptr<Module> module) : Module::Interface(std::move(module), "fatal:u") { static const FunctionInfo functions[] = { - {1, &Fatal_U::FatalSimple, "FatalSimple"}, - {2, &Fatal_U::TransitionToFatalError, "TransitionToFatalError"}, + {0, nullptr, "ThrowFatal"}, + {1, &Fatal_U::ThrowFatalWithPolicy, "ThrowFatalWithPolicy"}, + {2, &Fatal_U::ThrowFatalWithCpuContext, "ThrowFatalWithCpuContext"}, }; RegisterHandlers(functions); } |