summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-05-08 03:19:03 +0200
committerbunnei <ericbunnie@gmail.com>2014-05-08 03:19:03 +0200
commit4de763f462abb986a58052a69127d50789ffeb06 (patch)
tree7814c807bdcb667260a205ddb6f44240b5a98412 /src
parent- removed HLE mem "hack" and replaced with kernel mem region (diff)
downloadyuzu-4de763f462abb986a58052a69127d50789ffeb06.tar
yuzu-4de763f462abb986a58052a69127d50789ffeb06.tar.gz
yuzu-4de763f462abb986a58052a69127d50789ffeb06.tar.bz2
yuzu-4de763f462abb986a58052a69127d50789ffeb06.tar.lz
yuzu-4de763f462abb986a58052a69127d50789ffeb06.tar.xz
yuzu-4de763f462abb986a58052a69127d50789ffeb06.tar.zst
yuzu-4de763f462abb986a58052a69127d50789ffeb06.zip
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/syscall.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/syscall.cpp b/src/core/hle/syscall.cpp
index 5b4d47485..d47df6038 100644
--- a/src/core/hle/syscall.cpp
+++ b/src/core/hle/syscall.cpp
@@ -48,7 +48,7 @@ Result ControlMemory(u32 operation, u32 addr0, u32 addr1, u32 size, u32 permissi
default:
ERROR_LOG(SVC, "ControlMemory unknown operation=0x%08X", operation);
}
- DEBUG_LOG(SVC, "...returned virtual_address=0x%08X", virtual_address);
+
Core::g_app_core->SetReg(1, virtual_address);
return 0;