aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/he/script_v80he.cpp
diff options
context:
space:
mode:
authorTravis Howell2008-12-29 10:03:34 +0000
committerTravis Howell2008-12-29 10:03:34 +0000
commit4b4d752ba1aa590e4616e863f62e9113e2000fe5 (patch)
tree6f22f99c76fc9280a3badb6d9cc441159994a713 /engines/scumm/he/script_v80he.cpp
parentd8abe49a7822679f23980b51ab96c3186d5846b6 (diff)
downloadscummvm-rg350-4b4d752ba1aa590e4616e863f62e9113e2000fe5.tar.gz
scummvm-rg350-4b4d752ba1aa590e4616e863f62e9113e2000fe5.tar.bz2
scummvm-rg350-4b4d752ba1aa590e4616e863f62e9113e2000fe5.zip
Add Blue's Treasure Hunt.
svn-id: r35599
Diffstat (limited to 'engines/scumm/he/script_v80he.cpp')
-rw-r--r--engines/scumm/he/script_v80he.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/engines/scumm/he/script_v80he.cpp b/engines/scumm/he/script_v80he.cpp
index a0a6ab1ef2..aa78757c53 100644
--- a/engines/scumm/he/script_v80he.cpp
+++ b/engines/scumm/he/script_v80he.cpp
@@ -466,8 +466,17 @@ void ScummEngine_v80he::o80_readConfigFile() {
copyScriptString(option, sizeof(option));
copyScriptString(section, sizeof(section));
copyScriptString(filename, sizeof(filename));
+
r = convertFilePath(filename);
+ if (_game.id == GID_TREASUREHUNT) {
+ // WORKAROUND: Remove invalid characters
+ if (!strcmp((char *)section, "Blue'sTreasureHunt-Disc1"))
+ memcpy(section, "BluesTreasureHunt-Disc1\0", 24);
+ else if (!strcmp((char *)section, "Blue'sTreasureHunt-Disc2"))
+ memcpy(section, "BluesTreasureHunt-Disc2\0", 24);
+ }
+
Common::ConfigFile ConfFile;
if (!strcmp((char *)filename + r, "map.ini"))
ConfFile.loadFromFile((const char *)filename + r);
@@ -528,6 +537,14 @@ void ScummEngine_v80he::o80_writeConfigFile() {
r = convertFilePath(filename);
+ if (_game.id == GID_TREASUREHUNT) {
+ // WORKAROUND: Remove invalid characters
+ if (!strcmp((char *)section, "Blue'sTreasureHunt-Disc1"))
+ memcpy(section, "BluesTreasureHunt-Disc1\0", 24);
+ else if (!strcmp((char *)section, "Blue'sTreasureHunt-Disc2"))
+ memcpy(section, "BluesTreasureHunt-Disc2\0", 24);
+ }
+
Common::ConfigFile ConfFile;
ConfFile.loadFromSaveFile((const char *)filename + r);
ConfFile.setKey((char *)option, (char *)section, (char *)string);