From 436846797795a6d1fd1855fa9766af43151aa3bd Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 17 Nov 2013 03:08:23 -0500 Subject: [PATCH] [Android] Finish the RetroTVMode activity when it launches the activity within its onCreate. Avoids a blank view when the launched activity finishes. --- android/phoenix/src/com/retroarch/browser/RetroTVMode.java | 1 + 1 file changed, 1 insertion(+) diff --git a/android/phoenix/src/com/retroarch/browser/RetroTVMode.java b/android/phoenix/src/com/retroarch/browser/RetroTVMode.java index c351617551..39bebcbb00 100644 --- a/android/phoenix/src/com/retroarch/browser/RetroTVMode.java +++ b/android/phoenix/src/com/retroarch/browser/RetroTVMode.java @@ -30,6 +30,7 @@ public final class RetroTVMode extends Activity myIntent.putExtra("CONFIGFILE", UserPreferences.getDefaultConfigPath(this)); myIntent.putExtra("IME", current_ime); startActivity(myIntent); + finish(); } }