aboutsummaryrefslogtreecommitdiff
path: root/script_v1.cpp
diff options
context:
space:
mode:
authorMax Horn2002-05-05 18:10:29 +0000
committerMax Horn2002-05-05 18:10:29 +0000
commitff376ea8a590f8afbc521eb7cac0a54c2acabc3b (patch)
treeaaeabb72a4c029cc446b0653f4409a80d38113eb /script_v1.cpp
parentf412e7bb575ad56de201356d4851e9d7096062ef (diff)
downloadscummvm-rg350-ff376ea8a590f8afbc521eb7cac0a54c2acabc3b.tar.gz
scummvm-rg350-ff376ea8a590f8afbc521eb7cac0a54c2acabc3b.tar.bz2
scummvm-rg350-ff376ea8a590f8afbc521eb7cac0a54c2acabc3b.zip
fixed some warnings
svn-id: r4204
Diffstat (limited to 'script_v1.cpp')
-rw-r--r--script_v1.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/script_v1.cpp b/script_v1.cpp
index d83ce95ca8..6aae167399 100644
--- a/script_v1.cpp
+++ b/script_v1.cpp
@@ -2056,7 +2056,8 @@ void Scumm::o5_roomOps()
char buf[256], *s;
a = getVarOrDirectByte(0x80);
s = buf;
- while ((*s++ = fetchScriptByte()));
+ while ((*s++ = fetchScriptByte()))
+ ;
warning("roomops:13 save-string(%d,\"%s\") not implemented", a, buf);
break;
}
@@ -2064,7 +2065,8 @@ void Scumm::o5_roomOps()
char buf[256], *s;
a = getVarOrDirectByte(0x80);
s = buf;
- while ((*s++ = fetchScriptByte()));
+ while ((*s++ = fetchScriptByte()))
+ ;
warning("roomops:14 load-string(%d,\"%s\") not implemented", a, buf);
break;
case 15: /* palmanip? */