v0.3.1: default number of quickslots is now 4.

This commit is contained in:
Evan Debenham 2015-07-24 15:23:07 -04:00
parent 095bff4c1a
commit 9020c35347

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, 1); }
public static int quickSlots(){ return Preferences.INSTANCE.getInt( Preferences.KEY_QUICKSLOTS, 4); }
public static void flippedUI( boolean value) {
Preferences.INSTANCE.put(Preferences.KEY_FLIPPEDUI, value ); }