summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apm
diff options
context:
space:
mode:
authorKelebek1 <eeeedddccc@hotmail.co.uk>2022-09-01 17:47:47 +0200
committerKelebek1 <eeeedddccc@hotmail.co.uk>2022-09-01 17:54:22 +0200
commit03aedccaa252a7989c3ab147a83305b386476748 (patch)
treecb79e4190fe8e46209bcc89c39b3709308c17d45 /src/core/hle/service/apm
parentMerge pull request #8752 from vonchenplus/rectangle_texture (diff)
downloadyuzu-03aedccaa252a7989c3ab147a83305b386476748.tar
yuzu-03aedccaa252a7989c3ab147a83305b386476748.tar.gz
yuzu-03aedccaa252a7989c3ab147a83305b386476748.tar.bz2
yuzu-03aedccaa252a7989c3ab147a83305b386476748.tar.lz
yuzu-03aedccaa252a7989c3ab147a83305b386476748.tar.xz
yuzu-03aedccaa252a7989c3ab147a83305b386476748.tar.zst
yuzu-03aedccaa252a7989c3ab147a83305b386476748.zip
Diffstat (limited to 'src/core/hle/service/apm')
-rw-r--r--src/core/hle/service/apm/apm_controller.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/apm/apm_controller.cpp b/src/core/hle/service/apm/apm_controller.cpp
index 4e710491b..d6de84066 100644
--- a/src/core/hle/service/apm/apm_controller.cpp
+++ b/src/core/hle/service/apm/apm_controller.cpp
@@ -80,7 +80,7 @@ PerformanceConfiguration Controller::GetCurrentPerformanceConfiguration(Performa
}
void Controller::SetClockSpeed(u32 mhz) {
- LOG_INFO(Service_APM, "called, mhz={:08X}", mhz);
+ LOG_DEBUG(Service_APM, "called, mhz={:08X}", mhz);
// TODO(DarkLordZach): Actually signal core_timing to change clock speed.
// TODO(Rodrigo): Remove [[maybe_unused]] when core_timing is used.
}