diff --git a/core/src/main/assets/interfaces/icons.png b/core/src/main/assets/interfaces/icons.png index a6b276b5b..63fe09623 100644 Binary files a/core/src/main/assets/interfaces/icons.png and b/core/src/main/assets/interfaces/icons.png differ diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/Icons.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/Icons.java index c4a7acbbf..9c1132aec 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/Icons.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/Icons.java @@ -73,6 +73,7 @@ public enum Icons { CHECKED, CLOSE, PLUS, + REPEAT, ARROW, INFO, WARNING, @@ -242,38 +243,41 @@ public enum Icons { case PLUS: icon.frame( icon.texture.uvRectBySize( 48, 48, 11, 11 ) ); break; - case ARROW: + case REPEAT: icon.frame( icon.texture.uvRectBySize( 64, 48, 11, 11 ) ); break; - case INFO: - icon.frame( icon.texture.uvRectBySize( 80, 48, 14, 14 ) ); + case ARROW: + icon.frame( icon.texture.uvRectBySize( 80, 48, 11, 11 ) ); break; - case WARNING: + case INFO: icon.frame( icon.texture.uvRectBySize( 96, 48, 14, 14 ) ); break; + case WARNING: + icon.frame( icon.texture.uvRectBySize( 112, 48, 14, 14 ) ); + break; case BACKPACK_LRG: - icon.frame( icon.texture.uvRectBySize( 112, 48, 16, 16 ) ); + icon.frame( icon.texture.uvRectBySize( 128, 48, 16, 16 ) ); break; case TALENT: - icon.frame( icon.texture.uvRectBySize( 128, 48, 13, 13 ) ); + icon.frame( icon.texture.uvRectBySize( 144, 48, 13, 13 ) ); break; case MAGNIFY: - icon.frame( icon.texture.uvRectBySize( 144, 48, 14, 14 ) ); + icon.frame( icon.texture.uvRectBySize( 160, 48, 14, 14 ) ); break; case SNAKE: - icon.frame( icon.texture.uvRectBySize( 160, 48, 9, 13 ) ); + icon.frame( icon.texture.uvRectBySize( 176, 48, 9, 13 ) ); break; case BUFFS: - icon.frame( icon.texture.uvRectBySize( 176, 48, 16, 15 ) ); + icon.frame( icon.texture.uvRectBySize( 192, 48, 16, 15 ) ); break; case ENERGY: - icon.frame( icon.texture.uvRectBySize( 192, 48, 16, 16 ) ); + icon.frame( icon.texture.uvRectBySize( 208, 48, 16, 16 ) ); break; case COPY: icon.frame( icon.texture.uvRectBySize( 224, 48, 13, 13 ) ); break; case PASTE: - icon.frame( icon.texture.uvRectBySize( 208, 48, 13, 13 ) ); + icon.frame( icon.texture.uvRectBySize( 240, 48, 13, 13 ) ); break; case COIN_SML: icon.frame( icon.texture.uvRectBySize( 192, 64, 7, 7 ) );