saveload.c
changeset 5211 fb4dc0ca975d
parent 5167 12c46fb7eccf
child 5216 8bd14ee39af2
equal deleted inserted replaced
5210:3415ef43c70a 5211:fb4dc0ca975d
    28 #include "saveload.h"
    28 #include "saveload.h"
    29 #include "network.h"
    29 #include "network.h"
    30 #include "variables.h"
    30 #include "variables.h"
    31 #include <setjmp.h>
    31 #include <setjmp.h>
    32 
    32 
    33 const uint16 SAVEGAME_VERSION = 39;
    33 const uint16 SAVEGAME_VERSION = 40;
    34 uint16 _sl_version;       /// the major savegame version identifier
    34 uint16 _sl_version;       /// the major savegame version identifier
    35 byte   _sl_minor_version; /// the minor savegame version, DO NOT USE!
    35 byte   _sl_minor_version; /// the minor savegame version, DO NOT USE!
    36 
    36 
    37 typedef void WriterProc(uint len);
    37 typedef void WriterProc(uint len);
    38 typedef uint ReaderProc(void);
    38 typedef uint ReaderProc(void);