C64: Remove an unused variable

This commit is contained in:
SaxxonPike 2019-07-13 15:02:18 -05:00
parent 76679bc8bc
commit 894adbb610
2 changed files with 0 additions and 3 deletions

View File

@ -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))

View File

@ -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;
}