From 486cdcf2b7a01d30a44d20ff0dd6f97002e007b8 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 2 Dec 2014 02:13:15 -0500 Subject: [PATCH] v0.2.3: removed android L warning (issue does not seem to be affecting OTAs, only select few who flashed from a dev pre-release). --- .../shatteredpixeldungeon/scenes/InterlevelScene.java | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/scenes/InterlevelScene.java b/src/com/shatteredpixel/shatteredpixeldungeon/scenes/InterlevelScene.java index 7f2cc98f9..fddf61b77 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/scenes/InterlevelScene.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/scenes/InterlevelScene.java @@ -46,8 +46,6 @@ public class InterlevelScene extends PixelScene { private static final String TXT_DESCENDING = "Descending..."; private static final String TXT_ASCENDING = "Ascending..."; private static final String TXT_LOADING = "Loading..."; - private static final String TXT_L = "\n\n\nDue to an issue with Android L,\nThe game may need some\n" + - "extra time to load initially.\n\nSorry for any inconvenience,\nGoogle should fix this shortly."; private static final String TXT_RESURRECTING= "Resurrecting..."; private static final String TXT_RETURNING = "Returning..."; private static final String TXT_FALLING = "Falling..."; @@ -111,15 +109,6 @@ public class InterlevelScene extends PixelScene { message.x = (Camera.main.width - message.width()) / 2; message.y = (Camera.main.height - message.height()) / 2; add( message ); - - if (Build.VERSION.RELEASE.equals("5.0") && Dungeon.hero == null && Dungeon.depth == 0){ - BitmapText Lwarn = PixelScene.createMultiline(TXT_L, 9); - Lwarn.hardlight(Window.TITLE_COLOR); - Lwarn.measure(); - Lwarn.x = (Camera.main.width - Lwarn.width()) / 2; - Lwarn.y = message.y; - add( Lwarn ); - } phase = Phase.FADE_IN; timeLeft = TIME_TO_FADE;