aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/dreamweb/detection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dreamweb/detection.cpp b/engines/dreamweb/detection.cpp
index fac2fb7446..a5cb7b585f 100644
--- a/engines/dreamweb/detection.cpp
+++ b/engines/dreamweb/detection.cpp
@@ -105,7 +105,7 @@ SaveStateList DreamWebMetaEngine::listSaves(const char *target) const {
Common::InSaveFile *stream = saveFileMan->openForLoading(file);
if (!stream)
error("cannot open save file %s", file.c_str());
- char name[13] = {};
+ char name[17] = {};
stream->seek(0x61);
stream->read(name, sizeof(name) - 1);
delete stream;