Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] No need to use startActivityForResult in DolphinEmulator.ja…
…va any more. Just some leftover stuff from the big refactor.
  • Loading branch information
lioncash committed Sep 16, 2013
1 parent 5a0f0b9 commit 449cd3b
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -58,8 +58,8 @@ public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
if (savedInstanceState == null)
{
Intent ListIntent = new Intent(this, GameListActivity.class);
startActivityForResult(ListIntent, 1);
Intent GameListIntent = new Intent(this, GameListActivity.class);
startActivity(GameListIntent, savedInstanceState);

String BaseDir = Environment.getExternalStorageDirectory()+File.separator+"dolphin-emu";
String ConfigDir = BaseDir + File.separator + "Config";
Expand Down

0 comments on commit 449cd3b

Please sign in to comment.