[Android] Return to game list instead of exiting app

This commit is contained in:
Sean Maas 2014-10-08 22:28:18 -04:00
parent 677d74df88
commit 17f0fdb18f
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() {
public void onClick(DialogInterface dialog, int which)
{
finish();
onDestroy();
}
});
builder.show();