Skip to content

Commit

Permalink
Fixed save state hotkey to F6 key
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshisuga committed Apr 23, 2024
1 parent da5cc3e commit fd8910d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iOS/EmulatorController.m
Original file line number Diff line number Diff line change
Expand Up @@ -971,7 +971,7 @@ void mame_load_state(int slot)
void mame_save_state(int slot)
{
NSCParameterAssert(slot == 1 || slot == 2);
push_mame_keys(MYOSD_KEY_LSHIFT, MYOSD_KEY_LOADSAVE, (slot == 1) ? MYOSD_KEY_1 : MYOSD_KEY_2, 0);
push_mame_keys(MYOSD_KEY_F6, (slot == 1) ? MYOSD_KEY_1 : MYOSD_KEY_2, 0, 0);
}

- (void)presentPopup:(UIViewController *)viewController from:(UIView*)view animated:(BOOL)flag completion:(void (^)(void))completion {
Expand Down

0 comments on commit fd8910d

Please sign in to comment.