aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2004-09-13 10:24:37 +0000
committerTravis Howell2004-09-13 10:24:37 +0000
commit5a4686b92d65033969823dd511cd7b9df6f86cf4 (patch)
tree72ef2054c6d5f73276e08584a0d8b02d493f0c58
parent51bcffef855acbab8615d78263e56b994e0400be (diff)
downloadscummvm-rg350-5a4686b92d65033969823dd511cd7b9df6f86cf4.tar.gz
scummvm-rg350-5a4686b92d65033969823dd511cd7b9df6f86cf4.tar.bz2
scummvm-rg350-5a4686b92d65033969823dd511cd7b9df6f86cf4.zip
Order wrong
svn-id: r15090
-rw-r--r--scumm/script_v72he.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp
index 6df29a3562..35ec23b7cf 100644
--- a/scumm/script_v72he.cpp
+++ b/scumm/script_v72he.cpp
@@ -1896,7 +1896,7 @@ void ScummEngine_v72he::o72_readINI() {
void ScummEngine_v72he::o72_writeINI() {
int type, value;
- byte option[256], option2[1024];
+ byte option[256], string[1024];
type = fetchScriptByte();
@@ -1907,8 +1907,8 @@ void ScummEngine_v72he::o72_writeINI() {
debug(1,"o72_writeINI: %s set to %d", option, value);
break;
case 7: // string
+ copyScriptString(string);
copyScriptString(option);
- copyScriptString(option2);
debug(1,"o72_writeINI: %s set to %s", option, option2);
break;
default: