Skip to content

Commit

Permalink
Re-added the ability to load auto saves
Browse files Browse the repository at this point in the history
  • Loading branch information
fzurita committed Oct 5, 2015
1 parent 18cc005 commit 107ea48
Showing 1 changed file with 9 additions and 0 deletions.
Expand Up @@ -412,6 +412,15 @@ public void onAction()
CoreInterface.saveFileFromPrompt();
}
});

mGameSidebar.addRow(0x0, mActivity.getString(R.string.menuItem_fileLoadAutoSave), null, new GameSidebar.Action()
{
@Override
public void onAction()
{
CoreInterface.loadAutoSaveFromPrompt();
}
});

int resId = NativeExports.emuGetFramelimiter() ? R.string.menuItem_disableFramelimiter
: R.string.menuItem_enableFramelimiter;
Expand Down

0 comments on commit 107ea48

Please sign in to comment.