1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-12 09:09:09 +00:00

(svn r2041) -Fix: not all vehicles did get a day_proc call (because of rounding errors)

This commit is contained in:
truelight
2005-03-24 13:59:44 +00:00
parent ccd6a0614f
commit 88ef277dc3
4 changed files with 48 additions and 31 deletions

View File

@@ -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
};