From 579ffe5c25c6126f2884b2fd343bef9d47bd46a4 Mon Sep 17 00:00:00 2001 From: SaxxonPike Date: Thu, 4 Jul 2019 14:20:12 -0500 Subject: [PATCH] C64: Had the flag with the wrong polarity. Thanks, C64Anabalt. --- BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Parse.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Parse.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Parse.cs index fe55e794f1..7e33d1eae8 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Parse.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Parse.cs @@ -181,7 +181,7 @@ { spr.Dma = true; spr.Mcbase = 0; - spr.YCrunch = !spr.YExpand; + spr.YCrunch = spr.YExpand; } } }