mirror of https://github.com/bsnes-emu/bsnes.git
sfc: Remove unused auto-joypad-polling variables.
These variables stopped being useful after commit 39c37ec
, which switched to
tracking auto-polling state in the autoJoypadCounter variable.
This commit is contained in:
parent
83e76c87eb
commit
34af95da9e
|
@ -118,8 +118,6 @@ private:
|
|||
bool hdmaPending = 0;
|
||||
bool hdmaMode = 0; //0 = init, 1 = run
|
||||
|
||||
bool autoJoypadActive = 0;
|
||||
bool autoJoypadLatch = 0;
|
||||
uint autoJoypadCounter = 33; //state machine; 4224 / 128 = 33 (inactive)
|
||||
} status;
|
||||
|
||||
|
|
|
@ -43,8 +43,6 @@ auto CPU::serialize(serializer& s) -> void {
|
|||
s.integer(status.hdmaPending);
|
||||
s.integer(status.hdmaMode);
|
||||
|
||||
s.integer(status.autoJoypadActive);
|
||||
s.integer(status.autoJoypadLatch);
|
||||
s.integer(status.autoJoypadCounter);
|
||||
|
||||
s.integer(io.wramAddress);
|
||||
|
|
Loading…
Reference in New Issue