summaryrefslogtreecommitdiffstats
path: root/src/core/hle
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-04-24 16:29:39 +0200
committerLioncash <mathew1800@gmail.com>2018-04-24 18:00:56 +0200
commit28b92db7fd5301b7968188b82349129550ec660c (patch)
tree00daf54b8f1310d1a245f63ad4bd5e5a025c4760 /src/core/hle
parentlm: Move logging macros over to new fmt-compatible ones (diff)
downloadyuzu-28b92db7fd5301b7968188b82349129550ec660c.tar
yuzu-28b92db7fd5301b7968188b82349129550ec660c.tar.gz
yuzu-28b92db7fd5301b7968188b82349129550ec660c.tar.bz2
yuzu-28b92db7fd5301b7968188b82349129550ec660c.tar.lz
yuzu-28b92db7fd5301b7968188b82349129550ec660c.tar.xz
yuzu-28b92db7fd5301b7968188b82349129550ec660c.tar.zst
yuzu-28b92db7fd5301b7968188b82349129550ec660c.zip
Diffstat (limited to 'src/core/hle')
-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)
: ServiceFramework(name), module(std::move(module)) {}
void Module::Interface::Unknown(Kernel::HLERequestContext& ctx) {
- LOG_WARNING(Service_NFP, "(STUBBED) called");
+ NGLOG_WARNING(Service_NFP, "(STUBBED) called");
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(RESULT_SUCCESS);
}