From 29c74384a265b9470017fbb58138c53172b0bb18 Mon Sep 17 00:00:00 2001 From: cam900 Date: Thu, 15 Dec 2022 19:09:26 +0900 Subject: [PATCH] Fix max volume --- src/engine/platform/k007232.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/platform/k007232.cpp b/src/engine/platform/k007232.cpp index 93eb77a5..e174a277 100644 --- a/src/engine/platform/k007232.cpp +++ b/src/engine/platform/k007232.cpp @@ -377,7 +377,7 @@ int DivPlatformK007232::dispatch(DivCommand c) { chan[c.chan].setPos=true; break; case DIV_CMD_GET_VOLMAX: - return 255; + return 15; break; case DIV_ALWAYS_SET_VOLUME: return 1;