diff --git a/assets/icons.png b/assets/icons.png index 3bc578881..d6391c122 100644 Binary files a/assets/icons.png and b/assets/icons.png differ diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java b/src/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java index 1bbacbc79..1ade20fce 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java @@ -202,14 +202,6 @@ public class ShatteredPixelDungeon extends Game { return Preferences.INSTANCE.getBoolean( Preferences.KEY_BRIGHTNESS, false ); } - public static void donated( String value ) { - Preferences.INSTANCE.put( Preferences.KEY_DONATED, value ); - } - - public static String donated() { - return Preferences.INSTANCE.getString( Preferences.KEY_DONATED, "" ); - } - public static void lastClass( int value ) { Preferences.INSTANCE.put( Preferences.KEY_LAST_CLASS, value ); } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/ui/Icons.java b/src/com/shatteredpixel/shatteredpixeldungeon/ui/Icons.java index 4da5d672e..a3bddeb35 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/ui/Icons.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/ui/Icons.java @@ -41,8 +41,6 @@ public enum Icons { DEPTH, SLEEP, ALERT, - SUPPORT, - SUPPORTED, BACKPACK, SEED_POUCH, SCROLL_HOLDER, @@ -114,12 +112,6 @@ public enum Icons { case ALERT: icon.frame( icon.texture.uvRect( 22, 45, 30, 53 ) ); break; - case SUPPORT: - icon.frame( icon.texture.uvRect( 30, 45, 46, 61 ) ); - break; - case SUPPORTED: - icon.frame( icon.texture.uvRect( 46, 45, 62, 61 ) ); - break; case BACKPACK: icon.frame( icon.texture.uvRect( 58, 0, 68, 10 ) ); break;