[Scummvm-git-logs] scummvm branch-2-3 -> 1c4ca3c0f500e03c187b02399360756e71a3a930

dreammaster dreammaster at scummvm.org
Wed Sep 8 01:42:50 UTC 2021


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:
1c4ca3c0f5 AGS: Increase maximum save slot to 998


Commit: 1c4ca3c0f500e03c187b02399360756e71a3a930
    https://github.com/scummvm/scummvm/commit/1c4ca3c0f500e03c187b02399360756e71a3a930
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2021-09-07T18:42:36-07:00

Commit Message:
AGS: Increase maximum save slot to 998

Some games like Maniac Mansion Deluxe, start in-game saves
from 100 onwards. Increasing the limit will allow these
saves to be opened directly from the ScummVM launcher

Changed paths:
    engines/ags/metaengine.h


diff --git a/engines/ags/metaengine.h b/engines/ags/metaengine.h
index ca6c941733..4297e7142b 100644
--- a/engines/ags/metaengine.h
+++ b/engines/ags/metaengine.h
@@ -39,9 +39,7 @@ public:
 	}
 
 	int getMaximumSaveSlot() const override {
-		// The original allows saveslot 000 to 099 and reserves higher slots
-		// for special purposes.
-		return 99;
+		return 998;
 	}
 
 	/**




More information about the Scummvm-git-logs mailing list