diff options
author | Le Philousophe | 2019-06-23 08:58:11 +0200 |
---|---|---|
committer | Le Philousophe | 2019-07-05 07:40:29 +0200 |
commit | 2ac6d005bbbf03c2c4ab9591e6904df572af7993 (patch) | |
tree | faee774aad322d1f7f654db42b3912a1fd41bd83 /engines/cryomni3d | |
parent | 4c2fb1b0a02f633cdd67faa3eadf7c426d286d4a (diff) | |
download | scummvm-rg350-2ac6d005bbbf03c2c4ab9591e6904df572af7993.tar.gz scummvm-rg350-2ac6d005bbbf03c2c4ab9591e6904df572af7993.tar.bz2 scummvm-rg350-2ac6d005bbbf03c2c4ab9591e6904df572af7993.zip |
CRYOMNI3D: Fix loading of game from original menu in-game
Diffstat (limited to 'engines/cryomni3d')
-rw-r--r-- | engines/cryomni3d/versailles/menus.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/engines/cryomni3d/versailles/menus.cpp b/engines/cryomni3d/versailles/menus.cpp index eff2085e34..9e072e8262 100644 --- a/engines/cryomni3d/versailles/menus.cpp +++ b/engines/cryomni3d/versailles/menus.cpp @@ -304,9 +304,7 @@ uint CryOmni3DEngine_Versailles::displayOptions() { end = displayYesNoBox(optionsSurface, Common::Rect(235, 420, 505, 465), 57); } drawState = 1; - if (end) { - _isPlaying = false; - } else { + if (!end) { selectedMsg = 0; } } @@ -332,7 +330,6 @@ uint CryOmni3DEngine_Versailles::displayOptions() { selectedMsg = 0; } else { _loadedSave = saveNumber; - _isPlaying = false; end = true; } waitMouseRelease(); @@ -347,7 +344,6 @@ uint CryOmni3DEngine_Versailles::displayOptions() { selectedMsg = 0; } else { _loadedSave = saveNumber; - _isPlaying = false; end = true; } waitMouseRelease(); |