summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar liamwhite2023-07-19 17:14:45 -0400
committerGravatar GitHub2023-07-19 17:14:45 -0400
commit86bbfe3b1d683640921e614c7d44ded67bb859d4 (patch)
treecd076ff72f4b98f5b7b8394da301746a9932255f
parentMerge pull request #11109 from Morph1984/net (diff)
parentDebug SetIdleTimeDetectionExtension (diff)
downloadyuzu-86bbfe3b1d683640921e614c7d44ded67bb859d4.tar.gz
yuzu-86bbfe3b1d683640921e614c7d44ded67bb859d4.tar.xz
yuzu-86bbfe3b1d683640921e614c7d44ded67bb859d4.zip
Merge pull request #11114 from Kelebek1/warnings
Mark SetIdleTimeDetectionExtension logging as debug
-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);