summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Zach Hilman2019-05-17 21:48:08 -0400
committerGravatar Zach Hilman2019-05-25 16:09:20 -0400
commitfc309bf893311b55bcff747a3ef3fe0afd0c7b96 (patch)
tree91c604d4f8a6b63cddae842a7b8b22345ba103c1 /src
parentapplets/error: Save report on error applet (diff)
downloadyuzu-fc309bf893311b55bcff747a3ef3fe0afd0c7b96.tar.gz
yuzu-fc309bf893311b55bcff747a3ef3fe0afd0c7b96.tar.xz
yuzu-fc309bf893311b55bcff747a3ef3fe0afd0c7b96.zip
service: Save report on unimplemented function call
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/service.cpp3
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
72namespace Service { 73namespace 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