mirror of https://github.com/PCSX2/pcsx2.git
Lilypad: Remove saveStateIndex.
Was used in saveStateTitle.
This commit is contained in:
parent
93274bfa49
commit
451f4267ba
|
@ -825,10 +825,6 @@ struct QueryInfo
|
|||
u8 response[42];
|
||||
} query = {0, 0, 0, 0, 0, 0xFF, {0xF3}};
|
||||
|
||||
#ifdef _MSC_VER
|
||||
int saveStateIndex = 0;
|
||||
#endif
|
||||
|
||||
s32 CALLBACK PADinit(u32 flags)
|
||||
{
|
||||
// Note: Won't load settings if already loaded.
|
||||
|
@ -1529,11 +1525,6 @@ keyEvent *CALLBACK PADkeyEvent()
|
|||
PrepareActivityState(false);
|
||||
}
|
||||
|
||||
if (ev.key == VK_F2 && ev.evt == KEYPRESS) {
|
||||
saveStateIndex += 1 - 2 * shiftDown;
|
||||
saveStateIndex = (saveStateIndex + 10) % 10;
|
||||
}
|
||||
|
||||
// So don't change skip mode on alt-F4.
|
||||
if (ev.key == VK_F4 && altDown) {
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue