saveload.c
changeset 1537 edd70cde5f84
parent 1529 be4a2259d2ff
child 1542 2ca6d1624e6d
equal deleted inserted replaced
1536:69c91cec07c5 1537:edd70cde5f84
     6 #include "town.h"
     6 #include "town.h"
     7 #include "player.h"
     7 #include "player.h"
     8 #include "saveload.h"
     8 #include "saveload.h"
     9 
     9 
    10 enum {
    10 enum {
    11 	SAVEGAME_MAJOR_VERSION = 11,
    11 	SAVEGAME_MAJOR_VERSION = 0xB,
    12 	SAVEGAME_MINOR_VERSION = 0,
    12 	SAVEGAME_MINOR_VERSION = 0x1,
    13 
    13 
    14 	SAVEGAME_LOADABLE_VERSION = (SAVEGAME_MAJOR_VERSION << 8) + SAVEGAME_MINOR_VERSION
    14 	SAVEGAME_LOADABLE_VERSION = (SAVEGAME_MAJOR_VERSION << 8) + SAVEGAME_MINOR_VERSION
    15 };
    15 };
    16 
    16 
    17 /******************************************************/
    17 /******************************************************/