diff options
author | bunnei <ericbunnie@gmail.com> | 2014-05-30 05:54:09 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-05-30 05:54:09 +0200 |
commit | 007b7edada86bf97e1499625c3c8fda25132bbac (patch) | |
tree | 80f59f34d029f88300daa619363e48650b765060 /src/core/hle/service | |
parent | mutex: fixed typo in ReleaseMutex (diff) | |
download | yuzu-007b7edada86bf97e1499625c3c8fda25132bbac.tar yuzu-007b7edada86bf97e1499625c3c8fda25132bbac.tar.gz yuzu-007b7edada86bf97e1499625c3c8fda25132bbac.tar.bz2 yuzu-007b7edada86bf97e1499625c3c8fda25132bbac.tar.lz yuzu-007b7edada86bf97e1499625c3c8fda25132bbac.tar.xz yuzu-007b7edada86bf97e1499625c3c8fda25132bbac.tar.zst yuzu-007b7edada86bf97e1499625c3c8fda25132bbac.zip |
Diffstat (limited to 'src/core/hle/service')
-rw-r--r-- | src/core/hle/service/srv.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/core/hle/service/srv.cpp b/src/core/hle/service/srv.cpp index ac8f398fc..f1940e6f5 100644 --- a/src/core/hle/service/srv.cpp +++ b/src/core/hle/service/srv.cpp @@ -36,18 +36,14 @@ void GetServiceHandle(Service::Interface* self) { std::string port_name = std::string((const char*)&cmd_buff[1], 0, Service::kMaxPortSize); Service::Interface* service = Service::g_manager->FetchFromPortName(port_name); - DEBUG_LOG(OSHLE, "called port=%s, handle=0x%08X", port_name.c_str(), - service->GetHandle()); - if (NULL != service) { cmd_buff[3] = service->GetHandle(); + DEBUG_LOG(OSHLE, "called port=%s, handle=0x%08X", port_name.c_str(), cmd_buff[3]); } else { - ERROR_LOG(OSHLE, "Service %s does not exist", port_name.c_str()); + ERROR_LOG(OSHLE, "(UNIMPLEMENTED) called port=%s", port_name.c_str()); res = -1; } cmd_buff[1] = res; - - //return res; } const Interface::FunctionInfo FunctionTable[] = { |