From 4499e3a33998fbd25535c0fec7cc4f8a93971264 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sat, 3 Jun 2017 14:44:05 -0400 Subject: [PATCH] v0.6.0: corrected an incorrect android version reference --- .../shatteredpixeldungeon/windows/WndSettings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndSettings.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndSettings.java index 8fc8ae23c..25adf82a0 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndSettings.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndSettings.java @@ -287,7 +287,7 @@ public class WndSettings extends WndTabbed { }; chkImmersive.setRect( 0, slots.bottom() + GAP_SML, WIDTH, BTN_HEIGHT ); chkImmersive.checked(ShatteredPixelDungeon.immersed()); - chkImmersive.enable(Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1); + chkImmersive.enable(Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT); add(chkImmersive); CheckBox chkFont = new CheckBox(Messages.get(this, "system_font")){