diff options
author | Travis Howell | 2005-01-30 05:00:20 +0000 |
---|---|---|
committer | Travis Howell | 2005-01-30 05:00:20 +0000 |
commit | 414e2c0a3f73568e921c10134a812198af942b6c (patch) | |
tree | 14ac1095ea6dd5056ff195e4151eeccd7ceb53c2 | |
parent | 8c1cb5ae512f6f4c61ce75b152532aca910166c6 (diff) | |
download | scummvm-rg350-414e2c0a3f73568e921c10134a812198af942b6c.tar.gz scummvm-rg350-414e2c0a3f73568e921c10134a812198af942b6c.tar.bz2 scummvm-rg350-414e2c0a3f73568e921c10134a812198af942b6c.zip |
HE100 difference
svn-id: r16701
-rw-r--r-- | scumm/script_v80he.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scumm/script_v80he.cpp b/scumm/script_v80he.cpp index 8ddecd6082..01377a5d43 100644 --- a/scumm/script_v80he.cpp +++ b/scumm/script_v80he.cpp @@ -439,9 +439,11 @@ void ScummEngine_v80he::o80_readConfigFile() { type = fetchScriptByte(); switch (type) { + case 43: // HE 100 case 6: // number push(0); break; + case 77: // HE 100 case 7: // string writeVar(0, 0); defineArray(0, kStringArray, 0, 0, 0, 0); @@ -463,6 +465,7 @@ void ScummEngine_v80he::o80_writeConfigFile() { type = fetchScriptByte(); switch (type) { + case 43: // HE 100 case 6: // number value = pop(); copyScriptString(section); @@ -470,6 +473,7 @@ void ScummEngine_v80he::o80_writeConfigFile() { copyScriptString(filename); debug(1,"o80_writeConfigFile: Filename %s Section %s Name %s Value %d", filename, section, name, value); break; + case 77: // HE 100 case 7: // string copyScriptString(string); copyScriptString(section); |