From 52fc2b1a7da79f96604c3623ff9269deafb85cf5 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 20 Jul 2016 15:29:04 -0400 Subject: [PATCH] v0.4.1: increased the default number of quickslots to 4 --- .../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 0e077f908..c5f413204 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java @@ -444,7 +444,7 @@ public class ShatteredPixelDungeon extends Game { public static void quickSlots( int value ){ Preferences.INSTANCE.put( Preferences.KEY_QUICKSLOTS, value ); } - public static int quickSlots(){ return Preferences.INSTANCE.getInt( Preferences.KEY_QUICKSLOTS, 2); } + public static int quickSlots(){ return Preferences.INSTANCE.getInt( Preferences.KEY_QUICKSLOTS, 4); } public static void flipToolbar( boolean value) { Preferences.INSTANCE.put(Preferences.KEY_FLIPTOOLBAR, value );