mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-13 07:49:19 +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);
|
super.onCreate(savedInstanceState);
|
||||||
if (savedInstanceState == null)
|
if (savedInstanceState == null)
|
||||||
{
|
{
|
||||||
Intent ListIntent = new Intent(this, GameListActivity.class);
|
Intent GameListIntent = new Intent(this, GameListActivity.class);
|
||||||
startActivityForResult(ListIntent, 1);
|
startActivity(GameListIntent, savedInstanceState);
|
||||||
|
|
||||||
String BaseDir = Environment.getExternalStorageDirectory()+File.separator+"dolphin-emu";
|
String BaseDir = Environment.getExternalStorageDirectory()+File.separator+"dolphin-emu";
|
||||||
String ConfigDir = BaseDir + File.separator + "Config";
|
String ConfigDir = BaseDir + File.separator + "Config";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user