update status bar saveslots on NextSlot() and PreviousSlot()

This commit is contained in:
andres.delikat 2011-07-17 13:33:09 +00:00
parent 1475d55da1
commit 1ee864666b
1 changed files with 2 additions and 0 deletions

View File

@ -2266,6 +2266,7 @@ namespace BizHawk.MultiClient
else if (SaveSlot > 9) SaveSlot = 9; //Meh, just in case
else SaveSlot--;
SaveSlotSelectedMessage();
UpdateStatusSlots();
}
private void NextSlot()
@ -2273,6 +2274,7 @@ namespace BizHawk.MultiClient
if (SaveSlot >= 9) SaveSlot = 1; //Wrap to beginning of slot list
else SaveSlot++;
SaveSlotSelectedMessage();
UpdateStatusSlots();
}
private void ToggleFPS()