diff options
-rw-r--r-- | scumm/script_v5.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp index 7c7cb643a3..6f831e854a 100644 --- a/scumm/script_v5.cpp +++ b/scumm/script_v5.cpp @@ -891,8 +891,12 @@ void Scumm_v5::saveVars() { warning("stub saveVars to %s", _scriptPointer); _scriptPointer += a + 1; break; + case 0x04: + return; + break; case 0x1F: // close file warning("stub saveVars close file"); + return; break; } @@ -922,8 +926,12 @@ void Scumm_v5::loadVars() { warning("stub loadVars from %s", _scriptPointer); _scriptPointer += a + 1; break; + case 0x04: + return; + break; case 0x1F: // close file warning("stub loadVars close file"); + return; break; } |