[Scummvm-cvs-logs] scummvm master -> 3da9bf5cc9134deaa108e6767371bdc44d31dee4

whoozle whoozle at yandex.ru
Thu Jun 16 08:43:50 CEST 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
3da9bf5cc9 DREAMWEB: Fixed size of the save file title


Commit: 3da9bf5cc9134deaa108e6767371bdc44d31dee4
    https://github.com/scummvm/scummvm/commit/3da9bf5cc9134deaa108e6767371bdc44d31dee4
Author: Vladimir Menshakov (whoozle at yandex.ru)
Date: 2011-06-15T23:41:47-07:00

Commit Message:
DREAMWEB: Fixed size of the save file title

Changed paths:
    engines/dreamweb/detection.cpp



diff --git a/engines/dreamweb/detection.cpp b/engines/dreamweb/detection.cpp
index fac2fb7..a5cb7b5 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;






More information about the Scummvm-git-logs mailing list