From 50ac80cb4c08d76c57b540744e7394ebd3ccc300 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Wed, 23 Feb 2005 00:07:03 +0000 Subject: [PATCH] (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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/saveload.c b/saveload.c index f4902c5f4c..2ba8d9e306 100644 --- a/saveload.c +++ b/saveload.c @@ -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