summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/nfp/nfp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nfp/nfp.cpp b/src/core/hle/service/nfp/nfp.cpp
index 91e5f527a..6627aaddc 100644
--- a/src/core/hle/service/nfp/nfp.cpp
+++ b/src/core/hle/service/nfp/nfp.cpp
@@ -13,7 +13,7 @@ Module::Interface::Interface(std::shared_ptr<Module> module, const char* name)
13 : ServiceFramework(name), module(std::move(module)) {} 13 : ServiceFramework(name), module(std::move(module)) {}
14 14
15void Module::Interface::Unknown(Kernel::HLERequestContext& ctx) { 15void Module::Interface::Unknown(Kernel::HLERequestContext& ctx) {
16 LOG_WARNING(Service_NFP, "(STUBBED) called"); 16 NGLOG_WARNING(Service_NFP, "(STUBBED) called");
17 IPC::ResponseBuilder rb{ctx, 2}; 17 IPC::ResponseBuilder rb{ctx, 2};
18 rb.Push(RESULT_SUCCESS); 18 rb.Push(RESULT_SUCCESS);
19} 19}