diff options
author | Kelebek1 <eeeedddccc@hotmail.co.uk> | 2023-07-18 11:16:14 +0200 |
---|---|---|
committer | Kelebek1 <eeeedddccc@hotmail.co.uk> | 2023-07-18 11:16:14 +0200 |
commit | 80cd67ed7ba551ca12bfede97c751df4e25baeac (patch) | |
tree | aae2e7ef1c2e85cd69f634c0ef19dc95dc00d718 | |
parent | file_sys/content_archive: Detect compressed NCAs (#11047) (diff) | |
download | yuzu-80cd67ed7ba551ca12bfede97c751df4e25baeac.tar yuzu-80cd67ed7ba551ca12bfede97c751df4e25baeac.tar.gz yuzu-80cd67ed7ba551ca12bfede97c751df4e25baeac.tar.bz2 yuzu-80cd67ed7ba551ca12bfede97c751df4e25baeac.tar.lz yuzu-80cd67ed7ba551ca12bfede97c751df4e25baeac.tar.xz yuzu-80cd67ed7ba551ca12bfede97c751df4e25baeac.tar.zst yuzu-80cd67ed7ba551ca12bfede97c751df4e25baeac.zip |
Diffstat (limited to '')
-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) { void ISelfController::SetIdleTimeDetectionExtension(HLERequestContext& ctx) { IPC::RequestParser rp{ctx}; idle_time_detection_extension = rp.Pop<u32>(); - LOG_WARNING(Service_AM, "(STUBBED) called idle_time_detection_extension={}", - idle_time_detection_extension); + LOG_DEBUG(Service_AM, "(STUBBED) called idle_time_detection_extension={}", + idle_time_detection_extension); IPC::ResponseBuilder rb{ctx, 2}; rb.Push(ResultSuccess); |