From 4048b876e75fe2abf5dcca9ef9e073eb6e914dc5 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Sun, 17 Oct 2021 18:19:08 +0200 Subject: [PATCH] :bug: Fully close the text dialog when pausing the game The audio is stoped, but the text keeps showing despite the game being paused --- Source/diablo.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/diablo.cpp b/Source/diablo.cpp index 4feda01a6..2d6801735 100644 --- a/Source/diablo.cpp +++ b/Source/diablo.cpp @@ -1654,6 +1654,7 @@ void diablo_pause_game() } else { PauseMode = 2; sound_stop(); + qtextflag = false; LastMouseButtonAction = MouseActionType::None; }