summaryrefslogtreecommitdiff
path: root/saveload.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2005-03-24 13:59:44 +0000
committertruelight <truelight@openttd.org>2005-03-24 13:59:44 +0000
commit88ef277dc3678610bf2b47437dcbcc00f6fbe333 (patch)
tree0b128e45836acd883ea7d555799b51783e559d1c /saveload.c
parentccd6a0614f57518fffec7bd5fa4c07e9eb1bfd2d (diff)
downloadopenttd-88ef277dc3678610bf2b47437dcbcc00f6fbe333.tar.xz
(svn r2041) -Fix: not all vehicles did get a day_proc call (because of rounding errors)
Diffstat (limited to 'saveload.c')
-rw-r--r--saveload.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/saveload.c b/saveload.c
index bf65e90e0..947019dac 100644
--- a/saveload.c
+++ b/saveload.c
@@ -8,8 +8,8 @@
#include "saveload.h"
enum {
- SAVEGAME_MAJOR_VERSION = 11,
- SAVEGAME_MINOR_VERSION = 0,
+ SAVEGAME_MAJOR_VERSION = 0xB,
+ SAVEGAME_MINOR_VERSION = 0x1,
SAVEGAME_LOADABLE_VERSION = (SAVEGAME_MAJOR_VERSION << 8) + SAVEGAME_MINOR_VERSION
};