diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/AboutScene.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/AboutScene.java index aa0404cff..6eb85fed7 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/AboutScene.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/AboutScene.java @@ -100,8 +100,8 @@ public class AboutScene extends PixelScene { CreditsBlock charlie = new CreditsBlock(false, Window.SHPX_COLOR, "Sound Effects:", - Icons.CHARLIE.get(), - "Charlie", + Icons.CELESTI.get(), + "Celesti", "s9menine.itch.io", "https://s9menine.itch.io"); charlie.setRect(alex.right(), alex.top(), colWidth/2f, 0); 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 3ab36d811..266a5ff22 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/Icons.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/Icons.java @@ -91,7 +91,7 @@ public enum Icons { //16x16 ALEKS, //32x32 - CHARLIE, + CELESTI, KRISTJAN, CUBE_CODE, PURIGRO, @@ -257,7 +257,7 @@ public enum Icons { icon.frame( icon.texture.uvRect( 48, 80, 64, 96 ) ); break; //32*32 icons are scaled down to match game's size - case CHARLIE: + case CELESTI: icon.frame( icon.texture.uvRect( 0, 96, 32, 128 ) ); icon.scale.set(PixelScene.align(0.49f)); break;