1
0
mirror of https://github.com/libretro/RetroArch synced 2025-02-19 12:41:00 +00:00

[Android] Finish the RetroTVMode activity when it launches the activity within its onCreate. Avoids a blank view when the launched activity finishes.

This commit is contained in:
Lioncash 2013-11-17 03:08:23 -05:00
parent 4b79284064
commit 4368467977

@ -30,6 +30,7 @@ public final class RetroTVMode extends Activity
myIntent.putExtra("CONFIGFILE", UserPreferences.getDefaultConfigPath(this));
myIntent.putExtra("IME", current_ime);
startActivity(myIntent);
finish();
}
}