diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java index ce12066a9..5f5b961ee 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java @@ -593,10 +593,13 @@ public class GameScene extends PixelScene { if (Document.ADVENTURERS_GUIDE.isPageFound(Document.GUIDE_INTRO)){ GameScene.flashForDocument(Document.ADVENTURERS_GUIDE, Document.GUIDE_INTRO); } else if (ControllerHandler.isControllerConnected()) { + GameLog.wipe(); GLog.p(Messages.get(GameScene.class, "tutorial_move_controller")); } else if (SPDSettings.interfaceSize() == 0) { + GameLog.wipe(); GLog.p(Messages.get(GameScene.class, "tutorial_move_mobile")); } else { + GameLog.wipe(); GLog.p(Messages.get(GameScene.class, "tutorial_move_desktop")); } toolbar.visible = toolbar.active = false;