Skip to content

Commit

Permalink
KYRA: (HOF) - minor GMM/RTL fix
Browse files Browse the repository at this point in the history
The game would error out when trying to return to the launcher via GMM right at the beginning (due to trying to load files based on incompletely initialized data).
  • Loading branch information
athrxx committed Jul 23, 2019
1 parent e232d57 commit 3ec025d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engines/kyra/engine/kyra_hof.cpp
Expand Up @@ -261,7 +261,8 @@ Common::Error KyraEngine_HoF::go() {
_menuDirectlyToLoad &= saveFileLoadable(0);

if (menuChoice & 1) {
startup();
if (!shouldQuit())
startup();
if (!shouldQuit())
runLoop();
cleanup();
Expand Down

0 comments on commit 3ec025d

Please sign in to comment.