aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/script_v5.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/scumm/script_v5.cpp')
-rw-r--r--engines/scumm/script_v5.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/scumm/script_v5.cpp b/engines/scumm/script_v5.cpp
index ce5ac4f323..a50dde5271 100644
--- a/engines/scumm/script_v5.cpp
+++ b/engines/scumm/script_v5.cpp
@@ -2064,7 +2064,8 @@ void ScummEngine_v5::o5_roomOps() {
a = getVarOrDirectByte(PARAM_1);
s = filename;
- while ((*s++ = fetchScriptByte()));
+ while ((*s++ = fetchScriptByte()))
+ ;
file = _saveFileMan->openForSaving(filename);
if (file != NULL) {
@@ -2083,7 +2084,8 @@ void ScummEngine_v5::o5_roomOps() {
a = getVarOrDirectByte(PARAM_1);
s = filename;
- while ((*s++ = fetchScriptByte()));
+ while ((*s++ = fetchScriptByte()))
+ ;
file = _saveFileMan->openForLoading(filename);
if (file != NULL) {