aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/script_v72he.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp
index 0bd956ad43..9a393d3eaa 100644
--- a/scumm/script_v72he.cpp
+++ b/scumm/script_v72he.cpp
@@ -1765,9 +1765,11 @@ void ScummEngine_v72he::o72_openFile() {
// There are Macintosh specific versions of HE7.2 games.
if (_heversion >= 80 && _substResFileNameIndex > 0) {
char buf1[128];
-
+ buf1[0] = '\0';
generateSubstResFileName((char *)filename, buf1, sizeof(buf1));
- strcpy((char *)filename, buf1);
+ if (buf1[0]) {
+ strcpy((char *)filename, buf1);
+ }
}
int r = convertFilePath(filename);