From 6d6f73e1c9c398d013107c9234ba7dcc5ac74901 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 19 Nov 2021 11:34:18 -0500 Subject: [PATCH] v1.1.0: Updated credits at Celesti's (formerly Charlie's) request --- .../shatteredpixeldungeon/scenes/AboutScene.java | 4 ++-- .../com/shatteredpixel/shatteredpixeldungeon/ui/Icons.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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;