diff options
author | Lioncash <mathew1800@gmail.com> | 2018-04-24 16:29:39 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-04-24 18:00:56 +0200 |
commit | 28b92db7fd5301b7968188b82349129550ec660c (patch) | |
tree | 00daf54b8f1310d1a245f63ad4bd5e5a025c4760 /src/core | |
parent | lm: Move logging macros over to new fmt-compatible ones (diff) | |
download | yuzu-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')
-rw-r--r-- | src/core/hle/service/nfp/nfp.cpp | 2 |
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); } |