saveload.c
changeset 1264 280792016b02
parent 1260 c60e76928e5c
child 1266 9dc5638fe8cc
equal deleted inserted replaced
1263:f1812befa312 1264:280792016b02
     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 = 6,
    10 	SAVEGAME_MAJOR_VERSION = 6,
    11 	SAVEGAME_MINOR_VERSION = 0,
    11 	SAVEGAME_MINOR_VERSION = 1,
    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 
    16 /******************************************************/
    16 /******************************************************/