v0.3.1: adjusted default number of quickslots to 2

This commit is contained in:
Evan Debenham 2015-08-12 10:04:22 -04:00
parent 7a89def76f
commit 1887a44f55

View File

@ -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 );