Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Use a simpler "startActivity()" call in DolphinEmulator.jav…
…a. Turns out the other one isn't 4.0 compatible, but actually only 4.1 and up. Also, in this case, we really don't actually care about the saved instance state bundle.
  • Loading branch information
lioncash committed Sep 18, 2013
1 parent 197b317 commit db7f869
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -59,7 +59,7 @@ public void onCreate(Bundle savedInstanceState)
if (savedInstanceState == null)
{
Intent GameListIntent = new Intent(this, GameListActivity.class);
startActivity(GameListIntent, savedInstanceState);
startActivity(GameListIntent);

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

0 comments on commit db7f869

Please sign in to comment.