From cafd721284b49a027fe82c0192a3a656b6729329 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 13 Aug 2022 22:44:00 +0200 Subject: [PATCH] do not showMissionScreen with game_keys_scroll --- control.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/control.cpp b/control.cpp index e1dbdfa2..02ce8403 100644 --- a/control.cpp +++ b/control.cpp @@ -117,7 +117,7 @@ EX movedir vectodir(hyperpoint P) { } EX void remission() { - if(!canmove && (cmode & sm::NORMAL)) showMissionScreen(); + if(!canmove && (cmode & sm::NORMAL) && !game_keys_scroll) showMissionScreen(); } EX hyperpoint move_destination_vec(int d) {