mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Android: Don't return anything from HandleInit
It only ever returned false.
This commit is contained in:
@ -9,7 +9,7 @@ import org.dolphinemu.dolphinemu.activities.EmulationActivity;
|
|||||||
|
|
||||||
public final class StartupHandler
|
public final class StartupHandler
|
||||||
{
|
{
|
||||||
public static boolean HandleInit(FragmentActivity parent)
|
public static void HandleInit(FragmentActivity parent)
|
||||||
{
|
{
|
||||||
// Ask the user to grant write permission if it's not already granted
|
// Ask the user to grant write permission if it's not already granted
|
||||||
PermissionsHandler.checkWritePermission(parent);
|
PermissionsHandler.checkWritePermission(parent);
|
||||||
@ -26,9 +26,6 @@ public final class StartupHandler
|
|||||||
emulation_intent.putExtra("SelectedGame", start_file);
|
emulation_intent.putExtra("SelectedGame", start_file);
|
||||||
parent.startActivity(emulation_intent);
|
parent.startActivity(emulation_intent);
|
||||||
parent.finish();
|
parent.finish();
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user