summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/am/am.cpp2
-rw-r--r--src/core/hle/service/ldr_ro.cpp6
2 files changed, 5 insertions, 3 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index 64f3bc7e9..7ae4859a7 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -36,7 +36,7 @@ void GetTitleIDList(Service::Interface* self) {
36 cmd_buff[1] = RESULT_SUCCESS.raw; 36 cmd_buff[1] = RESULT_SUCCESS.raw;
37 cmd_buff[2] = 0; 37 cmd_buff[2] = 0;
38 38
39 LOG_WARNING(Service_AM, "(STUBBED) Requested %u titles from media type %u", num_titles, media_type); 39 LOG_WARNING(Service_AM, "(STUBBED) Requested %u titles from media type %u. Address=0x%08X", num_titles, media_type, addr);
40} 40}
41 41
42void GetNumContentInfos(Service::Interface* self) { 42void GetNumContentInfos(Service::Interface* self) {
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) {
40 40
41 cmd_buff[1] = RESULT_SUCCESS.raw; // No error 41 cmd_buff[1] = RESULT_SUCCESS.raw; // No error
42 42
43 LOG_WARNING(Service_LDR, "(STUBBED) called"); 43 LOG_WARNING(Service_LDR, "(STUBBED) called. crs_buffer_ptr=0x%08X, crs_size=0x%08X, address=0x%08X, value=0x%08X, process=0x%08X",
44 crs_buffer_ptr, crs_size, address, value, process);
44} 45}
45 46
46/** 47/**
@@ -69,7 +70,8 @@ static void LoadCRR(Service::Interface* self) {
69 70
70 cmd_buff[1] = RESULT_SUCCESS.raw; // No error 71 cmd_buff[1] = RESULT_SUCCESS.raw; // No error
71 72
72 LOG_WARNING(Service_LDR, "(STUBBED) called"); 73 LOG_WARNING(Service_LDR, "(STUBBED) called. crs_buffer_ptr=0x%08X, crs_size=0x%08X, value=0x%08X, process=0x%08X",
74 crs_buffer_ptr, crs_size, value, process);
73} 75}
74 76
75const Interface::FunctionInfo FunctionTable[] = { 77const Interface::FunctionInfo FunctionTable[] = {