From 41d4212da897dddd7f07e166848789fe3b78adf0 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Fri, 25 Sep 2020 22:23:42 +0300 Subject: [PATCH] TINSEL: Remove an unneeded static --- engines/tinsel/dialogs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/tinsel/dialogs.cpp b/engines/tinsel/dialogs.cpp index 22cf0e8e4d4..12ea026a046 100644 --- a/engines/tinsel/dialogs.cpp +++ b/engines/tinsel/dialogs.cpp @@ -2259,7 +2259,7 @@ static int WhichMenuBox(int curX, int curY, bool bSlides) { * InvBoxes */ static void InvBoxes(bool InBody, int curX, int curY) { - static int rotateIndex = -1; // FIXME: Avoid non-const global vars + int rotateIndex = -1; int index; // Box pointed to on this call const FILM *pfilm;