diff options
author | bunnei <bunneidev@gmail.com> | 2019-01-05 03:42:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-05 03:42:23 +0100 |
commit | a01832b2e060a49a37e044bb16e3d94a01968d33 (patch) | |
tree | fb15507516999d7565e86a5423ccb9a07a85a9e2 | |
parent | Merge pull request #1980 from ogniK5377/applet-msg-update (diff) | |
parent | Return no application area when games try to open an application area (diff) | |
download | yuzu-a01832b2e060a49a37e044bb16e3d94a01968d33.tar yuzu-a01832b2e060a49a37e044bb16e3d94a01968d33.tar.gz yuzu-a01832b2e060a49a37e044bb16e3d94a01968d33.tar.bz2 yuzu-a01832b2e060a49a37e044bb16e3d94a01968d33.tar.lz yuzu-a01832b2e060a49a37e044bb16e3d94a01968d33.tar.xz yuzu-a01832b2e060a49a37e044bb16e3d94a01968d33.tar.zst yuzu-a01832b2e060a49a37e044bb16e3d94a01968d33.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/service/nfp/nfp.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/nfp/nfp.cpp b/src/core/hle/service/nfp/nfp.cpp index 2254fb46b..1c4482e47 100644 --- a/src/core/hle/service/nfp/nfp.cpp +++ b/src/core/hle/service/nfp/nfp.cpp @@ -20,7 +20,8 @@ namespace Service::NFP { namespace ErrCodes { constexpr ResultCode ERR_TAG_FAILED(ErrorModule::NFP, -1); // TODO(ogniK): Find the actual error code -} +constexpr ResultCode ERR_NO_APPLICATION_AREA(ErrorModule::NFP, 152); +} // namespace ErrCodes Module::Interface::Interface(std::shared_ptr<Module> module, const char* name) : ServiceFramework(name), module(std::move(module)) { @@ -292,10 +293,9 @@ private: } void OpenApplicationArea(Kernel::HLERequestContext& ctx) { - LOG_DEBUG(Service_NFP, "called"); - // We don't need to worry about this since we can just open the file + LOG_WARNING(Service_NFP, "(STUBBED) called"); IPC::ResponseBuilder rb{ctx, 2}; - rb.Push(RESULT_SUCCESS); + rb.Push(ErrCodes::ERR_NO_APPLICATION_AREA); } void GetApplicationAreaSize(Kernel::HLERequestContext& ctx) { |