summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-24 09:46:42 -0400
committerLioncash <mathew1800@gmail.com>2018-07-24 09:46:46 -0400
commit8e8e906432905f37dac9a6ed029fca8fb296b547 (patch)
tree3b71ea8b40f863ceba23014a3e64461e778d9903 /src
parent316c994f55c38a8eea6a3e4046238ff8da7ecd8c (diff)
svc: Log parameters in SetMemoryAttribute()
Provides slightly more context than only logging out the address value.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/kernel/svc.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index 7b41c9cfd..3e236cfd5 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -40,7 +40,9 @@ static ResultCode SetHeapSize(VAddr* heap_addr, u64 heap_size) {
}
static ResultCode SetMemoryAttribute(VAddr addr, u64 size, u32 state0, u32 state1) {
- LOG_WARNING(Kernel_SVC, "(STUBBED) called, addr=0x{:X}", addr);
+ LOG_WARNING(Kernel_SVC,
+ "(STUBBED) called, addr=0x{:X}, size=0x{:X}, state0=0x{:X}, state1=0x{:X}", addr,
+ size, state0, state1);
return RESULT_SUCCESS;
}