Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bugfix: Use correct config parameter string (CurrentSaveSlot->Current…
…StateSlot)
  • Loading branch information
littleguy77 committed Sep 15, 2013
1 parent a6d1e14 commit 9f21c22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/savestates.c
Expand Up @@ -118,7 +118,7 @@ void savestates_select_slot(unsigned int s)
if(s>9||s==slot)
return;
slot = s;
ConfigSetParameter(g_CoreConfig, "CurrentSaveSlot", M64TYPE_INT, &s);
ConfigSetParameter(g_CoreConfig, "CurrentStateSlot", M64TYPE_INT, &s);
StateChanged(M64CORE_SAVESTATE_SLOT, slot);

main_message(M64MSG_STATUS, OSD_BOTTOM_LEFT, "Selected state slot: %d", slot);
Expand Down

0 comments on commit 9f21c22

Please sign in to comment.