saveload.c
changeset 4300 c7e43c47a2b9
parent 4298 b926a6eaaa70
child 4323 ae32c5fab67b
equal deleted inserted replaced
4299:91f5d2bedcff 4300:c7e43c47a2b9
    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 = 29;
    33 const uint16 SAVEGAME_VERSION = 30;
    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);