From 823433df78219b6db37efd0ee6fa368a68129616 Mon Sep 17 00:00:00 2001 From: NyakoFox Date: Fri, 4 Oct 2024 20:03:40 -0300 Subject: [PATCH] Only show swipe tutorial if you're using swipe mode --- desktop_version/src/Script.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop_version/src/Script.cpp b/desktop_version/src/Script.cpp index 81db2a44..5298e15f 100644 --- a/desktop_version/src/Script.cpp +++ b/desktop_version/src/Script.cpp @@ -2529,7 +2529,7 @@ void scriptclass::run(void) } else if (words[0] == "controls") { - if (!game.seen_touch_tutorial) + if (!game.seen_touch_tutorial && touch::style == TOUCH_STYLE_SWIPE) { game.tutorial_mode = true; game.tutorial_state = 0;