From 4d477bc15b0caa4b1c719925da55bc692cf3a102 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 23 Aug 2020 13:57:31 +0200 Subject: [PATCH] - fixed uninitialized GameAction variable. --- source/exhumed/src/gameloop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/exhumed/src/gameloop.cpp b/source/exhumed/src/gameloop.cpp index 86bf0c5ef..6bf518eac 100644 --- a/source/exhumed/src/gameloop.cpp +++ b/source/exhumed/src/gameloop.cpp @@ -53,7 +53,7 @@ BEGIN_PS_NS short nBestLevel; static int32_t nonsharedtimer; -int GameAction; +int GameAction=-1; extern uint8_t nCinemaSeen; extern ClockTicks tclocks;