(svn r1909) - Fix: [ 1145593 ] assertion failed when saving the game. It is nice to also update the savegame format when you update town statistics :)
authorDarkvater
Wed, 23 Feb 2005 00:07:03 +0000
changeset 1405 1ca0d65db76c
parent 1404 28fa5e4ce5e9
child 1406 f5da270a654f
(svn r1909) - Fix: [ 1145593 ] assertion failed when saving the game. It is nice to also update the savegame format when you update town statistics :)
saveload.c
--- a/saveload.c	Tue Feb 22 22:29:19 2005 +0000
+++ b/saveload.c	Wed Feb 23 00:07:03 2005 +0000
@@ -8,7 +8,7 @@
 #include "saveload.h"
 
 enum {
-	SAVEGAME_MAJOR_VERSION = 8,
+	SAVEGAME_MAJOR_VERSION = 9,
 	SAVEGAME_MINOR_VERSION = 0,
 
 	SAVEGAME_LOADABLE_VERSION = (SAVEGAME_MAJOR_VERSION << 8) + SAVEGAME_MINOR_VERSION