summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2014-05-07 21:19:03 -0400
committerGravatar bunnei2014-05-07 21:19:03 -0400
commit4de763f462abb986a58052a69127d50789ffeb06 (patch)
tree7814c807bdcb667260a205ddb6f44240b5a98412 /src
parent- removed HLE mem "hack" and replaced with kernel mem region (diff)
downloadyuzu-4de763f462abb986a58052a69127d50789ffeb06.tar.gz
yuzu-4de763f462abb986a58052a69127d50789ffeb06.tar.xz
yuzu-4de763f462abb986a58052a69127d50789ffeb06.zip
removed unnecessary log message
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
48 default: 48 default:
49 ERROR_LOG(SVC, "ControlMemory unknown operation=0x%08X", operation); 49 ERROR_LOG(SVC, "ControlMemory unknown operation=0x%08X", operation);
50 } 50 }
51 DEBUG_LOG(SVC, "...returned virtual_address=0x%08X", virtual_address); 51
52 Core::g_app_core->SetReg(1, virtual_address); 52 Core::g_app_core->SetReg(1, virtual_address);
53 53
54 return 0; 54 return 0;