From 946b0e2c016f113bd167b1af6e7976b40d96cb3d Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Wed, 7 Jul 2021 10:24:51 -0400 Subject: [PATCH] PSX: maybe fix weird unthrottled behaviour. I didn't realize FrameAdvance had two return paths in octoshock, and missed this one without incrementing Frame when I changed it to the end for the autofire issue. Will audit the rest of the cores as well, but try this in dev build. --- src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs b/src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs index ac56aa7847..2fd356b1e8 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs @@ -854,7 +854,11 @@ namespace BizHawk.Emulation.Cores.Sony.PSX LagCount++; //what happens to sound in this case? - if (render == false) return true; + if (render == false) + { + Frame++; + return true; + } OctoshockDll.ShockFramebufferInfo fb = new OctoshockDll.ShockFramebufferInfo();