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/core/hle/service | |
parent | Properly update fatal.h void name (diff) | |
download | yuzu-abe79b27241e73cf9531301fa4c88106ed042a80.tar yuzu-abe79b27241e73cf9531301fa4c88106ed042a80.tar.gz yuzu-abe79b27241e73cf9531301fa4c88106ed042a80.tar.bz2 yuzu-abe79b27241e73cf9531301fa4c88106ed042a80.tar.lz yuzu-abe79b27241e73cf9531301fa4c88106ed042a80.tar.xz yuzu-abe79b27241e73cf9531301fa4c88106ed042a80.tar.zst yuzu-abe79b27241e73cf9531301fa4c88106ed042a80.zip |
Diffstat (limited to 'src/core/hle/service')
-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); } |