From eb3ad92fc0b86649b611ac7cd575a6340fc5935e Mon Sep 17 00:00:00 2001 From: "simon.kagstrom" Date: Sun, 21 Mar 2010 12:38:24 +0000 Subject: [PATCH] Fix noise in menu --- Src/SID_wii.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/SID_wii.h b/Src/SID_wii.h index 05219a6..377929d 100644 --- a/Src/SID_wii.h +++ b/Src/SID_wii.h @@ -92,7 +92,7 @@ void DigitalRenderer::PushVolume(uint8 volume) void DigitalRenderer::EmulateLine(void) { - if (!ready) + if (!ready || TheC64->IsPaused()) return; this->PushVolume(volume); }