Merge pull request #1241 from SeannyM/android-fixcrash

[Android] Return to game list instead of exiting app
This commit is contained in:
Lioncash 2014-10-08 22:32:38 -04:00
commit 6eb2b6ef7a
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ public final class EmulationActivity extends Activity
builder.setPositiveButton(R.string.yes, new DialogInterface.OnClickListener() { builder.setPositiveButton(R.string.yes, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) public void onClick(DialogInterface dialog, int which)
{ {
finish(); onDestroy();
} }
}); });
builder.show(); builder.show();