From 5ec605b9660893023eeb13b96ef7b1e2b0eaa159 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sat, 10 Sep 2016 03:03:31 -0400 Subject: [PATCH] v0.4.2a: reduced the size of the status pane background Reduces number of invisible pixels rendered, improving performance a little bit --- .../com/shatteredpixel/shatteredpixeldungeon/ui/StatusPane.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/StatusPane.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/StatusPane.java index e865f8ea6..b7a4c105d 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/StatusPane.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/StatusPane.java @@ -75,7 +75,7 @@ public class StatusPane extends Component { @Override protected void createChildren() { - bg = new NinePatch( Assets.STATUS, 85, 0, 45, 0 ); + bg = new NinePatch( Assets.STATUS, 0, 0, 128, 36, 85, 0, 45, 0 ); add( bg ); add( new TouchArea( 0, 1, 31, 31 ) {