From 7a549f85205b2b9663dcb18f7eaffc2c2b2afd5b Mon Sep 17 00:00:00 2001 From: Strangerke Date: Fri, 25 Oct 2019 23:36:27 +0200 Subject: GRIFFON: Fix another game crash due to an uninitialized variable --- engines/griffon/engine.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/engines/griffon/engine.cpp b/engines/griffon/engine.cpp index b8f7e30079..20cff6260b 100644 --- a/engines/griffon/engine.cpp +++ b/engines/griffon/engine.cpp @@ -318,6 +318,8 @@ void GriffonEngine::newGame() { _playingGardens = false; _playingBoss = false; + _player.spellStrength = 0; + loadMap(2); mainLoop(); -- cgit v1.2.3