diff options
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/service/service.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 00806b0ed..fc29bb5da 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -68,6 +68,7 @@ | |||
| 68 | #include "core/hle/service/usb/usb.h" | 68 | #include "core/hle/service/usb/usb.h" |
| 69 | #include "core/hle/service/vi/vi.h" | 69 | #include "core/hle/service/vi/vi.h" |
| 70 | #include "core/hle/service/wlan/wlan.h" | 70 | #include "core/hle/service/wlan/wlan.h" |
| 71 | #include "core/reporter.h" | ||
| 71 | 72 | ||
| 72 | namespace Service { | 73 | namespace Service { |
| 73 | 74 | ||
| @@ -148,6 +149,8 @@ void ServiceFrameworkBase::ReportUnimplementedFunction(Kernel::HLERequestContext | |||
| 148 | } | 149 | } |
| 149 | buf.push_back('}'); | 150 | buf.push_back('}'); |
| 150 | 151 | ||
| 152 | Core::System::GetInstance().GetReporter().SaveUnimplementedFunctionReport( | ||
| 153 | ctx, ctx.GetCommand(), function_name, service_name); | ||
| 151 | UNIMPLEMENTED_MSG("Unknown / unimplemented {}", fmt::to_string(buf)); | 154 | UNIMPLEMENTED_MSG("Unknown / unimplemented {}", fmt::to_string(buf)); |
| 152 | } | 155 | } |
| 153 | 156 | ||