From fb96f7e2f565fb1b20447655f6e186eee14fb9eb Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 9 Aug 2015 18:14:28 -0400 Subject: [PATCH] v0.3.1: fixed a bug with tag flip changes --- .../shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java b/src/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java index 44858c3ba..85fc4fc96 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java @@ -413,7 +413,7 @@ public class GameScene extends PixelScene { if (ShatteredPixelDungeon.flipTags()) { scene.log.setRect(scene.attack.width(), scene.toolbar.top(), uiCamera.width - scene.attack.width(), 0); } else { - scene.log.setRect(0, scene.toolbar.top(), scene.attack.left(), 0 ); + scene.log.setRect(0, scene.toolbar.top(), uiCamera.width - scene.attack.width(), 0 ); } float pos = scene.toolbar.top();