aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/lure/disk.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/lure/disk.cpp b/engines/lure/disk.cpp
index 33f1679c6e..f23490272b 100644
--- a/engines/lure/disk.cpp
+++ b/engines/lure/disk.cpp
@@ -62,7 +62,10 @@ uint8 Disk::indexOf(uint16 id, bool suppressError) {
}
if (suppressError) return 0xff;
- error("Could not find entry Id #%d in file disk%d.vga", id, _fileNum);
+ if (_fileNum == 0)
+ error("Could not find entry Id #%d in file %s", id, SUPPORT_FILENAME);
+ else
+ error("Could not find entry Id #%d in file disk%d.vga", id, _fileNum);
}
void Disk::openFile(uint8 fileNum) {