diff options
Diffstat (limited to 'src/core')
| -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 { | |||
| 8 | 8 | ||
| 9 | Fatal_U::Fatal_U(std::shared_ptr<Module> module) : Module::Interface(std::move(module), "fatal:u") { | 9 | Fatal_U::Fatal_U(std::shared_ptr<Module> module) : Module::Interface(std::move(module), "fatal:u") { |
| 10 | static const FunctionInfo functions[] = { | 10 | static const FunctionInfo functions[] = { |
| 11 | {1, &Fatal_U::FatalSimple, "FatalSimple"}, | 11 | {0, nullptr, "ThrowFatal"}, |
| 12 | {2, &Fatal_U::TransitionToFatalError, "TransitionToFatalError"}, | 12 | {1, &Fatal_U::ThrowFatalWithPolicy, "ThrowFatalWithPolicy"}, |
| 13 | {2, &Fatal_U::ThrowFatalWithCpuContext, "ThrowFatalWithCpuContext"}, | ||
| 13 | }; | 14 | }; |
| 14 | RegisterHandlers(functions); | 15 | RegisterHandlers(functions); |
| 15 | } | 16 | } |