From 1887a44f558f4c641fc8f059dbd40aff14babc5f Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 12 Aug 2015 10:04:22 -0400 Subject: [PATCH] v0.3.1: adjusted default number of quickslots to 2 --- .../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 ac3e615ee..9835e5b75 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java @@ -335,7 +335,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, 4); } + public static int quickSlots(){ return Preferences.INSTANCE.getInt( Preferences.KEY_QUICKSLOTS, 2); } public static void flipToolbar( boolean value) { Preferences.INSTANCE.put(Preferences.KEY_FLIPTOOLBAR, value );