diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2019-01-04 03:22:25 +0100 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2019-01-04 03:22:25 +0100 |
commit | 48a526dba17aad4b26135014f7a2931b5706809a (patch) | |
tree | bc5c599e5caf28d4d76194fe01c847741073aad0 /src/core/hle/service | |
parent | Merge pull request #1724 from FearlessTobi/port-4412 (diff) | |
download | yuzu-48a526dba17aad4b26135014f7a2931b5706809a.tar yuzu-48a526dba17aad4b26135014f7a2931b5706809a.tar.gz yuzu-48a526dba17aad4b26135014f7a2931b5706809a.tar.bz2 yuzu-48a526dba17aad4b26135014f7a2931b5706809a.tar.lz yuzu-48a526dba17aad4b26135014f7a2931b5706809a.tar.xz yuzu-48a526dba17aad4b26135014f7a2931b5706809a.tar.zst yuzu-48a526dba17aad4b26135014f7a2931b5706809a.zip |
Diffstat (limited to 'src/core/hle/service')
-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) { |