diff options
author | bunnei <ericbunnie@gmail.com> | 2014-05-30 05:04:18 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-05-30 05:04:18 +0200 |
commit | b0bad47c0e25717bb1c69bc9a286e57f39064238 (patch) | |
tree | 592e50a7722dc55a6840087f5d6941448b9716ee /src | |
parent | arm: removed unnecessary code when calling SVC from skyeye (diff) | |
download | yuzu-b0bad47c0e25717bb1c69bc9a286e57f39064238.tar yuzu-b0bad47c0e25717bb1c69bc9a286e57f39064238.tar.gz yuzu-b0bad47c0e25717bb1c69bc9a286e57f39064238.tar.bz2 yuzu-b0bad47c0e25717bb1c69bc9a286e57f39064238.tar.lz yuzu-b0bad47c0e25717bb1c69bc9a286e57f39064238.tar.xz yuzu-b0bad47c0e25717bb1c69bc9a286e57f39064238.tar.zst yuzu-b0bad47c0e25717bb1c69bc9a286e57f39064238.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/svc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp index 6df0309e6..27f2b2315 100644 --- a/src/core/hle/svc.cpp +++ b/src/core/hle/svc.cpp @@ -191,7 +191,7 @@ Result ArbitrateAddress(Handle arbiter, u32 addr, u32 _type, u32 value, s64 nano /// Used to output a message on a debug hardware unit - does nothing on a retail unit void OutputDebugString(const char* string) { - NOTICE_LOG(SVC, "## OSDEBUG: %08X %s", Core::g_app_core->GetPC(), string); + OS_LOG(SVC, "%s", string); } /// Get resource limit |