[Scummvm-cvs-logs] scummvm master -> b2ab29587b5de62a5cebaac7e7e5946c457af08e

m-kiewitz m_kiewitz at users.sourceforge.net
Tue Jan 26 16:55:52 CET 2016


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:
b2ab29587b SCI: Only select save slots for kernel calls


Commit: b2ab29587b5de62a5cebaac7e7e5946c457af08e
    https://github.com/scummvm/scummvm/commit/b2ab29587b5de62a5cebaac7e7e5946c457af08e
Author: Martin Kiewitz (m_kiewitz at users.sourceforge.net)
Date: 2016-01-26T16:55:38+01:00

Commit Message:
SCI: Only select save slots for kernel calls

Previous code also selected files called e.g. "[targetname].abc"

Changed paths:
    engines/sci/sci.cpp



diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp
index 5265ada..1232b65 100644
--- a/engines/sci/sci.cpp
+++ b/engines/sci/sci.cpp
@@ -863,7 +863,7 @@ Common::String SciEngine::getSavegameName(int nr) const {
 }
 
 Common::String SciEngine::getSavegamePattern() const {
-	return _targetName + ".???";
+	return _targetName + ".###";
 }
 
 Common::String SciEngine::getFilePrefix() const {






More information about the Scummvm-git-logs mailing list