diff options
| author | 2023-07-18 10:16:14 +0100 | |
|---|---|---|
| committer | 2023-07-18 10:16:14 +0100 | |
| commit | 80cd67ed7ba551ca12bfede97c751df4e25baeac (patch) | |
| tree | aae2e7ef1c2e85cd69f634c0ef19dc95dc00d718 /src | |
| parent | file_sys/content_archive: Detect compressed NCAs (#11047) (diff) | |
| download | yuzu-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.cpp | 4 |
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) { | |||
| 506 | void ISelfController::SetIdleTimeDetectionExtension(HLERequestContext& ctx) { | 506 | void 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); |