diff options
| author | David <25727384+ogniK5377@users.noreply.github.com> | 2018-09-24 12:34:11 +1000 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2018-09-23 22:34:11 -0400 |
| commit | 367c52ff0d9d4238aff849629a0957daa525c485 (patch) | |
| tree | 9b52edf5e5beb8c922a60c3be7115557fd8751a7 /src/core/hle/service/fatal/fatal_u.cpp | |
| parent | 2513e086abe4b317763add86d25e6fed7300d6c7 (diff) | |
Implemented fatal:u properly (#1347)
* Implemented fatal:u properly
fatal:u now is properly implemented with all the ipc cmds. Error reports/Crash reports are also now implemented for fatal:u. Crash reports save to yuzu/logs/crash_reports/
The register dump is currently known as sysmodules send all zeros. If there are any non zero values for the "registers" or the unknown values, let me know!
* Fatal:U fixups
* Made fatal:u execution break more clear
* Fatal fixups
Diffstat (limited to 'src/core/hle/service/fatal/fatal_u.cpp')
| -rw-r--r-- | src/core/hle/service/fatal/fatal_u.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/fatal/fatal_u.cpp b/src/core/hle/service/fatal/fatal_u.cpp index befc307cf..1572a2051 100644 --- a/src/core/hle/service/fatal/fatal_u.cpp +++ b/src/core/hle/service/fatal/fatal_u.cpp @@ -8,7 +8,7 @@ namespace Service::Fatal { Fatal_U::Fatal_U(std::shared_ptr<Module> module) : Module::Interface(std::move(module), "fatal:u") { static const FunctionInfo functions[] = { - {0, nullptr, "ThrowFatal"}, + {0, &Fatal_U::ThrowFatal, "ThrowFatal"}, {1, &Fatal_U::ThrowFatalWithPolicy, "ThrowFatalWithPolicy"}, {2, &Fatal_U::ThrowFatalWithCpuContext, "ThrowFatalWithCpuContext"}, }; |
