summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ldr_ro.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-07-29 18:33:21 +0200
committerLioncash <mathew1800@gmail.com>2015-07-29 18:34:18 +0200
commit75631b2a9ff330e6cbb42df019d4b8fd3579289a (patch)
treebf5092039cbd166f574885d5c36177faef54bfcc /src/core/hle/service/ldr_ro.cpp
parentMerge pull request #1012 from lioncash/prototype (diff)
downloadyuzu-75631b2a9ff330e6cbb42df019d4b8fd3579289a.tar
yuzu-75631b2a9ff330e6cbb42df019d4b8fd3579289a.tar.gz
yuzu-75631b2a9ff330e6cbb42df019d4b8fd3579289a.tar.bz2
yuzu-75631b2a9ff330e6cbb42df019d4b8fd3579289a.tar.lz
yuzu-75631b2a9ff330e6cbb42df019d4b8fd3579289a.tar.xz
yuzu-75631b2a9ff330e6cbb42df019d4b8fd3579289a.tar.zst
yuzu-75631b2a9ff330e6cbb42df019d4b8fd3579289a.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ldr_ro.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/service/ldr_ro.cpp b/src/core/hle/service/ldr_ro.cpp
index 155b97f69..f84ce4d72 100644
--- a/src/core/hle/service/ldr_ro.cpp
+++ b/src/core/hle/service/ldr_ro.cpp
@@ -40,7 +40,8 @@ static void Initialize(Service::Interface* self) {
cmd_buff[1] = RESULT_SUCCESS.raw; // No error
- LOG_WARNING(Service_LDR, "(STUBBED) called");
+ LOG_WARNING(Service_LDR, "(STUBBED) called. crs_buffer_ptr=0x%08X, crs_size=0x%08X, address=0x%08X, value=0x%08X, process=0x%08X",
+ crs_buffer_ptr, crs_size, address, value, process);
}
/**
@@ -69,7 +70,8 @@ static void LoadCRR(Service::Interface* self) {
cmd_buff[1] = RESULT_SUCCESS.raw; // No error
- LOG_WARNING(Service_LDR, "(STUBBED) called");
+ LOG_WARNING(Service_LDR, "(STUBBED) called. crs_buffer_ptr=0x%08X, crs_size=0x%08X, value=0x%08X, process=0x%08X",
+ crs_buffer_ptr, crs_size, value, process);
}
const Interface::FunctionInfo FunctionTable[] = {