diff options
author | Travis Howell | 2005-01-31 00:27:31 +0000 |
---|---|---|
committer | Travis Howell | 2005-01-31 00:27:31 +0000 |
commit | 0c827c0fcf43a764f0e9176d23ccf4567282934a (patch) | |
tree | 6ec5d076109039c4a48c37c4c309206d71a5c24d | |
parent | 09d0d6c26d311e7fc2620ad5d978d9b64c3bd612 (diff) | |
download | scummvm-rg350-0c827c0fcf43a764f0e9176d23ccf4567282934a.tar.gz scummvm-rg350-0c827c0fcf43a764f0e9176d23ccf4567282934a.tar.bz2 scummvm-rg350-0c827c0fcf43a764f0e9176d23ccf4567282934a.zip |
Add comment
svn-id: r16712
-rw-r--r-- | scumm/script_v72he.cpp | 7 | ||||
-rw-r--r-- | scumm/script_v90he.cpp | 2 |
2 files changed, 3 insertions, 6 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp index 6894abc0d8..096b3cda4b 100644 --- a/scumm/script_v72he.cpp +++ b/scumm/script_v72he.cpp @@ -1536,16 +1536,13 @@ void ScummEngine_v72he::o72_openFile() { // HACK Correct incorrect filenames if (!strcmp((char *)filename,".he3")) { + // For freddicove (Unencrypted) memset(filename, 0, sizeof(filename)); sprintf((char *)filename, "%s.he3", _gameName.c_str()); debug(0,"New filename %s", filename); - } else if (!strcmp((char *)filename,".he7")) { - memset(filename, 0, sizeof(filename)); - sprintf((char *)filename, "%s.he7", _gameName.c_str()); - debug(0,"New filename %s", filename); - } else if (!strcmp((char *)filename,".HE9")) { + // For bb2demo memset(filename, 0, sizeof(filename)); sprintf((char *)filename, "%s.he9", _gameName.c_str()); debug(0,"New filename %s", filename); diff --git a/scumm/script_v90he.cpp b/scumm/script_v90he.cpp index d747838682..8b5dbf5039 100644 --- a/scumm/script_v90he.cpp +++ b/scumm/script_v90he.cpp @@ -1439,7 +1439,7 @@ void ScummEngine_v90he::o90_paletteOps() { default: error("o90_paletteOps: Unknown case %d", subOp); } - debug(0,"o90_paletteOps stub (%d)", subOp); + debug(1,"o90_paletteOps stub (%d)", subOp); } |