summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Kelebek12023-07-18 10:16:14 +0100
committerGravatar Kelebek12023-07-18 10:16:14 +0100
commit80cd67ed7ba551ca12bfede97c751df4e25baeac (patch)
treeaae2e7ef1c2e85cd69f634c0ef19dc95dc00d718 /src
parentfile_sys/content_archive: Detect compressed NCAs (#11047) (diff)
downloadyuzu-80cd67ed7ba551ca12bfede97c751df4e25baeac.tar.gz
yuzu-80cd67ed7ba551ca12bfede97c751df4e25baeac.tar.xz
yuzu-80cd67ed7ba551ca12bfede97c751df4e25baeac.zip
Debug SetIdleTimeDetectionExtension
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/am/am.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index a2375508a..4f400d341 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -506,8 +506,8 @@ void ISelfController::SetHandlesRequestToDisplay(HLERequestContext& ctx) {
506void ISelfController::SetIdleTimeDetectionExtension(HLERequestContext& ctx) { 506void ISelfController::SetIdleTimeDetectionExtension(HLERequestContext& ctx) {
507 IPC::RequestParser rp{ctx}; 507 IPC::RequestParser rp{ctx};
508 idle_time_detection_extension = rp.Pop<u32>(); 508 idle_time_detection_extension = rp.Pop<u32>();
509 LOG_WARNING(Service_AM, "(STUBBED) called idle_time_detection_extension={}", 509 LOG_DEBUG(Service_AM, "(STUBBED) called idle_time_detection_extension={}",
510 idle_time_detection_extension); 510 idle_time_detection_extension);
511 511
512 IPC::ResponseBuilder rb{ctx, 2}; 512 IPC::ResponseBuilder rb{ctx, 2};
513 rb.Push(ResultSuccess); 513 rb.Push(ResultSuccess);