saveload.c
changeset 1282 e7a73ee62d2f
parent 1279 4f83fbde72de
child 1284 06a52178bf46
equal deleted inserted replaced
1281:1573d0e4e7a1 1282:e7a73ee62d2f
     5 #include "town.h"
     5 #include "town.h"
     6 #include "player.h"
     6 #include "player.h"
     7 #include "saveload.h"
     7 #include "saveload.h"
     8 
     8 
     9 enum {
     9 enum {
    10 	SAVEGAME_MAJOR_VERSION = 7,
    10 	SAVEGAME_MAJOR_VERSION = 8,
    11 	SAVEGAME_MINOR_VERSION = 0,
    11 	SAVEGAME_MINOR_VERSION = 0,
    12 
    12 
    13 	SAVEGAME_LOADABLE_VERSION = (SAVEGAME_MAJOR_VERSION << 8) + SAVEGAME_MINOR_VERSION
    13 	SAVEGAME_LOADABLE_VERSION = (SAVEGAME_MAJOR_VERSION << 8) + SAVEGAME_MINOR_VERSION
    14 };
    14 };
    15 
    15