mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-08 21:53:31 +01:00
[Android] No need to use startActivityForResult in DolphinEmulator.java any more. Just some leftover stuff from the big refactor.
This commit is contained in:
parent
5a0f0b908e
commit
449cd3b267
@ -58,8 +58,8 @@ public final class DolphinEmulator extends Activity
|
||||
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";
|
||||
|
Loading…
x
Reference in New Issue
Block a user