From 0ff0be2a93151ae40e016f6be3167e13edc7a2f6 Mon Sep 17 00:00:00 2001 From: Asnivor Date: Wed, 3 Apr 2019 17:10:49 +0100 Subject: [PATCH] 1BitBeeper: allow clock incrementation by an arbitrary value (it is possible a core may need this) --- 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 09b0bb5409..10287f1940 100644 --- a/BizHawk.Emulation.Cores/Sound/OneBitBeeper.cs +++ b/BizHawk.Emulation.Cores/Sound/OneBitBeeper.cs @@ -39,7 +39,7 @@ namespace BizHawk.Emulation.Cores.Sound /// /// Option to clock the beeper every CPU clock /// - public void Clock() + public void Clock(int clocksToAdd = 1) { clockCounter++; }