From 80abaab1ae2a4d2039c6fd8ed19cf9f4bbc47864 Mon Sep 17 00:00:00 2001 From: Martin Kiewitz Date: Mon, 1 Feb 2010 11:53:54 +0000 Subject: [PATCH] SCI: initialize gfxmenu for sci32 (fixes gk1 crash) svn-id: r47794 --- engines/sci/sci.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp index 1128dce170d..373e3d7f33e 100644 --- a/engines/sci/sci.cpp +++ b/engines/sci/sci.cpp @@ -175,6 +175,7 @@ Common::Error SciEngine::run() { if (getSciVersion() >= SCI_VERSION_2) { _gamestate->_gfxAnimate = 0; _gamestate->_gfxControls = 0; + _gamestate->_gfxMenu = 0; _gamestate->_gfxPorts = 0; _gamestate->_gui = 0; _gamestate->_gui32 = new SciGui32(_gamestate, screen, palette, cache, cursor);