[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

View File

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