saveload.c
changeset 1264 acebb2b01e32
parent 1260 632f63689178
child 1266 eccd576e322f
equal deleted inserted replaced
1263:38ec6c6fc266 1264:acebb2b01e32
     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 /******************************************************/