[Scummvm-git-logs] scummvm master -> 592f8b42c806051cf3cd24b4bada7c66cdc83ffe
dreammaster
dreammaster at scummvm.org
Wed Sep 8 01:44:16 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:
592f8b42c8 AGS: Increase maximum save slot to 998
Commit: 592f8b42c806051cf3cd24b4bada7c66cdc83ffe
https://github.com/scummvm/scummvm/commit/592f8b42c806051cf3cd24b4bada7c66cdc83ffe
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2021-09-07T18:43:57-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