From 894adbb61076efe70fcc9e85a477fb002aadc627 Mon Sep 17 00:00:00 2001 From: SaxxonPike Date: Sat, 13 Jul 2019 15:02:18 -0500 Subject: [PATCH] C64: Remove an unused variable --- BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Parse.cs | 1 - BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Render.cs | 2 -- 2 files changed, 3 deletions(-) diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Parse.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Parse.cs index a348f499f9..9d8ba3ce4f 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Parse.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Parse.cs @@ -110,7 +110,6 @@ // graphics data shift register _parseSrShift = 7 - _xScroll; _srData1 &= ~(0xFF << _parseSrShift); - _srActive |= 0xFF << _parseSrShift; _srColorEnable &= ~(0xFF << _parseSrShift); if (_multicolorMode && (_bitmapMode || (_dataC & 0x800) != 0)) diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Render.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Render.cs index 8c7f07d927..4964ff4450 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Render.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Render.cs @@ -16,7 +16,6 @@ private int _srColor2; private int _srColor3; private int _srData1; - private int _srActive; private int _srColorEnable; private int _videoMode; private int _borderOnShiftReg; @@ -222,7 +221,6 @@ _srColor2 <<= 1; _srColor3 <<= 1; _srData1 <<= 1; - _srActive <<= 1; _srColorEnable <<= 1; }