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:
Tim Allen 2021-04-04 21:52:40 +10:00 committed by Screwtapello
parent 83e76c87eb
commit 34af95da9e
2 changed files with 0 additions and 4 deletions

View File

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

View File

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