From c0defce472a4f295fc90d4781ae71c29e44ea680 Mon Sep 17 00:00:00 2001 From: goyuken Date: Wed, 13 Aug 2014 17:22:16 +0000 Subject: [PATCH] quicknes: support frameskipping and audioskipping. the speedup isn't all that much, but a bit more speed is gained --- .../Consoles/Nintendo/QuickNES/QuickNES.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs index 9b5eb7f568..8f8fedcf5e 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs @@ -158,8 +158,10 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES if (IsLagFrame) LagCount++; - Blit(); - DrainAudio(); + if (render) + Blit(); + if (rendersound) + DrainAudio(); } }