diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/he/script_v72he.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/scumm/he/script_v72he.cpp b/engines/scumm/he/script_v72he.cpp index 32c15abcba..25f5f3dc3f 100644 --- a/engines/scumm/he/script_v72he.cpp +++ b/engines/scumm/he/script_v72he.cpp @@ -1420,6 +1420,12 @@ void ScummEngine_v72he::o72_openFile() { _hOutFileTable[slot] = _saveFileMan->openForSaving(filename); } break; + case 6: + // FIXME: Appending to saved game file is not supported right now + // This is used in several Backyard Sports games. The stub is required for + // baseball2001 to continue after trying to save Hall of Fame data. + slot = -1; + break; default: error("o72_openFile(): wrong open file mode %d", mode); } |