diff options
| author | 2018-04-24 10:29:39 -0400 | |
|---|---|---|
| committer | 2018-04-24 12:00:56 -0400 | |
| commit | 28b92db7fd5301b7968188b82349129550ec660c (patch) | |
| tree | 00daf54b8f1310d1a245f63ad4bd5e5a025c4760 /src | |
| parent | lm: Move logging macros over to new fmt-compatible ones (diff) | |
| download | yuzu-28b92db7fd5301b7968188b82349129550ec660c.tar.gz yuzu-28b92db7fd5301b7968188b82349129550ec660c.tar.xz yuzu-28b92db7fd5301b7968188b82349129550ec660c.zip | |
nfp: Move logging macros over to new fmt-compatible ones
Diffstat (limited to 'src')
| -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) | |||
| 13 | : ServiceFramework(name), module(std::move(module)) {} | 13 | : ServiceFramework(name), module(std::move(module)) {} |
| 14 | 14 | ||
| 15 | void Module::Interface::Unknown(Kernel::HLERequestContext& ctx) { | 15 | void 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 | } |