diff options
author | Darkvater <darkvater@openttd.org> | 2005-02-23 00:07:03 +0000 |
---|---|---|
committer | Darkvater <darkvater@openttd.org> | 2005-02-23 00:07:03 +0000 |
commit | 50ac80cb4c08d76c57b540744e7394ebd3ccc300 (patch) | |
tree | 40f38b8e0edd0ccbf1d8b258b33c2ed3023c446f | |
parent | d51e9e3d03d285a7806ba172f1282ffc5dd48ddd (diff) | |
download | openttd-50ac80cb4c08d76c57b540744e7394ebd3ccc300.tar.xz |
(svn r1909) - Fix: [ 1145593 ] assertion failed when saving the game. It is nice to also update the savegame format when you update town statistics :)
-rw-r--r-- | saveload.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/saveload.c b/saveload.c index f4902c5f4..2ba8d9e30 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 |