summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authormailwl <mailwl@gmail.com>2016-03-01 18:41:40 +0100
committermailwl <mailwl@gmail.com>2016-03-27 09:08:04 +0200
commit81d988b0225c91dfda6f73a60d2a2b9b4db37ba1 (patch)
tree7f0d330e239de7af82f750f61654283cd5f4d98a /src/core/hle/service/service.cpp
parentMerge pull request #1573 from wwylele/input_fix (diff)
downloadyuzu-81d988b0225c91dfda6f73a60d2a2b9b4db37ba1.tar
yuzu-81d988b0225c91dfda6f73a60d2a2b9b4db37ba1.tar.gz
yuzu-81d988b0225c91dfda6f73a60d2a2b9b4db37ba1.tar.bz2
yuzu-81d988b0225c91dfda6f73a60d2a2b9b4db37ba1.tar.lz
yuzu-81d988b0225c91dfda6f73a60d2a2b9b4db37ba1.tar.xz
yuzu-81d988b0225c91dfda6f73a60d2a2b9b4db37ba1.tar.zst
yuzu-81d988b0225c91dfda6f73a60d2a2b9b4db37ba1.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/service.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 35b648409..833a68f05 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -70,9 +70,8 @@ ResultVal<bool> Interface::SyncRequest() {
// TODO(bunnei): Hack - ignore error
cmd_buff[1] = 0;
return MakeResult<bool>(false);
- } else {
- LOG_TRACE(Service, "%s", MakeFunctionString(itr->second.name, GetPortName().c_str(), cmd_buff).c_str());
}
+ LOG_TRACE(Service, "%s", MakeFunctionString(itr->second.name, GetPortName().c_str(), cmd_buff).c_str());
itr->second.func(this);