From c27dbdab96f9b7a6ad3dd1b9022162b9de36751e Mon Sep 17 00:00:00 2001 From: tildearrow Date: Mon, 20 Mar 2023 03:55:12 -0500 Subject: [PATCH] VIC-20: get rid of debug message --- src/engine/platform/vic20.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/engine/platform/vic20.cpp b/src/engine/platform/vic20.cpp index 5188eb15..bd25b528 100644 --- a/src/engine/platform/vic20.cpp +++ b/src/engine/platform/vic20.cpp @@ -75,7 +75,6 @@ void DivPlatformVIC20::acquire(short** buf, size_t len) { } void DivPlatformVIC20::calcAndWriteOutVol(int ch, int env) { - logV("calcAndWriteOutVol (%d, %d)",ch,env); chan[ch].outVol=MIN(chan[ch].vol*env/15,15); writeOutVol(ch); }