From d2131ea947fe9fcf883fe114870c71bb3f17fd3b Mon Sep 17 00:00:00 2001 From: Asnivor Date: Wed, 3 Apr 2019 17:12:09 +0100 Subject: [PATCH] 1BitBeeper: actually do what the last commit was supposed to do --- BizHawk.Emulation.Cores/Sound/OneBitBeeper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Sound/OneBitBeeper.cs b/BizHawk.Emulation.Cores/Sound/OneBitBeeper.cs index 10287f1940..9ab9e3e05b 100644 --- a/BizHawk.Emulation.Cores/Sound/OneBitBeeper.cs +++ b/BizHawk.Emulation.Cores/Sound/OneBitBeeper.cs @@ -41,7 +41,7 @@ namespace BizHawk.Emulation.Cores.Sound /// public void Clock(int clocksToAdd = 1) { - clockCounter++; + clockCounter += clocksToAdd; } ///