From 9655c5470d0c7cf5b057ef35ae74df717dbb962c Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 19 Jul 2015 02:22:14 -0400 Subject: [PATCH] v0.3.1: corrected default string return for toolbar mode --- .../shatteredpixeldungeon/ShatteredPixelDungeon.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java b/src/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java index 0df37f796..d27473cae 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java @@ -347,7 +347,7 @@ public class ShatteredPixelDungeon extends Game { } public static String toolbarMode() { - return Preferences.INSTANCE.getString(Preferences.KEY_BARMODE, !landscape() ? "SPLIT" : "GROUPED"); + return Preferences.INSTANCE.getString(Preferences.KEY_BARMODE, !landscape() ? "SPLIT" : "GROUP"); } public static void intro( boolean value ) {