- Set the maximum number of save games in DW1 and DW2 to 100, up from 30

- It's now possible to load and delete save games using the GMM (although not through the launcher screen yet)

svn-id: r35207
This commit is contained in:
Filippos Karapetis 2008-12-02 18:34:32 +00:00
parent 702b7be594
commit 5bfb248301
4 changed files with 43 additions and 2 deletions

View file

@ -118,6 +118,8 @@ static char *SaveSceneSsData = 0; // points to 'SAVED_DATA ssdata[MAX_NEST]'
//------------- SAVE/LOAD SUPPORT METHODS ----------------
void setNeedLoad() { NeedLoad = true; }
static void syncTime(Serializer &s, struct tm &t) {
s.syncAsUint16LE(t.tm_year);
s.syncAsByte(t.tm_mon);