summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/hle/service/fatal/fatal_p.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/core/hle/service/fatal/fatal_p.cpp b/src/core/hle/service/fatal/fatal_p.cpp
index 7d35b4208..4a81bb5e2 100644
--- a/src/core/hle/service/fatal/fatal_p.cpp
+++ b/src/core/hle/service/fatal/fatal_p.cpp
@@ -6,7 +6,13 @@
6namespace Service::Fatal { 6namespace Service::Fatal {
7 7
8Fatal_P::Fatal_P(std::shared_ptr<Module> module_, Core::System& system_) 8Fatal_P::Fatal_P(std::shared_ptr<Module> module_, Core::System& system_)
9 : Interface(std::move(module_), system_, "fatal:p") {} 9 : Interface(std::move(module_), system_, "fatal:p") {
10 static const FunctionInfo functions[] = {
11 {0, nullptr, "GetFatalEvent"},
12 {10, nullptr, "GetFatalContext"},
13 };
14 RegisterHandlers(functions);
15}
10 16
11Fatal_P::~Fatal_P() = default; 17Fatal_P::~Fatal_P() = default;
12 18