# HG changeset patch # User Darkvater # Date 1142582816 0 # Node ID ffde1325bab82086ed2ea593123da97a92982e6e # Parent ad3a18a3a31985966887c446b960db8ab09cd1b0 (svn r3915) - Savegame version 23: Do not save the autosave interval anymore with savegames. Some people should be very happe atm ;) diff -r ad3a18a3a319 -r ffde1325bab8 saveload.c --- a/saveload.c Fri Mar 17 08:01:54 2006 +0000 +++ b/saveload.c Fri Mar 17 08:06:56 2006 +0000 @@ -29,7 +29,7 @@ #include "variables.h" #include -const uint16 SAVEGAME_VERSION = 22; +const uint16 SAVEGAME_VERSION = 23; uint16 _sl_version; /// the major savegame version identifier byte _sl_minor_version; /// the minor savegame version, DO NOT USE! diff -r ad3a18a3a319 -r ffde1325bab8 settings.c --- a/settings.c Fri Mar 17 08:01:54 2006 +0000 +++ b/settings.c Fri Mar 17 08:06:56 2006 +0000 @@ -1131,7 +1131,8 @@ SDT_OMANY(GameOptions, town_name, SLE_UINT8, 0, 0, 0, 16, "english|french|german|american|latin|silly|swedish|dutch|finnish|polish|slovakish|norwegian|hungarian|austrian|romanian|czech|swiss", STR_NULL, NULL), SDT_OMANY(GameOptions, landscape, SLE_UINT8, 0, 0, 0, 3, "normal|hilly|desert|candy", STR_NULL, NULL), SDT_VAR(GameOptions, snow_line, SLE_UINT8, 0, 0, 1,0,56, STR_NULL, NULL), - SDT_OMANY(GameOptions, autosave, SLE_UINT8, N, 0, 1, 4, "off|monthly|quarterly|half year|yearly", STR_NULL, NULL), + SDT_CONDOMANY(GameOptions,autosave, SLE_UINT8, 0, 22, N, 0, 0, 0, "", STR_NULL, NULL), + SDT_CONDOMANY(GameOptions,autosave, SLE_UINT8,23, SL_MAX_VERSION, S, 0, 1, 4, "off|monthly|quarterly|half year|yearly", STR_NULL, NULL), SDT_OMANY(GameOptions, road_side, SLE_UINT8, 0, 0, 1, 1, "left|right", STR_NULL, NULL), SDT_END() };