From 5aa9019ec2067865c29615e7dd8b445910562042 Mon Sep 17 00:00:00 2001 From: cam900 Date: Sun, 5 Oct 2025 06:18:58 +0900 Subject: [PATCH] Reduce logging in MSM6258 rate changes --- src/engine/platform/msm6258.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/platform/msm6258.cpp b/src/engine/platform/msm6258.cpp index 91547feb6..b78ce52d5 100644 --- a/src/engine/platform/msm6258.cpp +++ b/src/engine/platform/msm6258.cpp @@ -36,7 +36,7 @@ static const int msmRates[4]={ int DivPlatformMSM6258::calcVGMRate() { int ret=chipClock/((clockSel+1)*512*msmRates[rateSel&3]); - logD("MSM rate: %d",ret); + //logD("MSM rate: %d",ret); return ret; }