src/saveload.cpp
changeset 6486 7d2ae0a167fb
parent 6463 e986fe39dfe7
child 6491 00dc414c909d
equal deleted inserted replaced
6485:2c310cd45776 6486:7d2ae0a167fb
    26 #include "saveload.h"
    26 #include "saveload.h"
    27 #include "network/network.h"
    27 #include "network/network.h"
    28 #include "variables.h"
    28 #include "variables.h"
    29 #include <setjmp.h>
    29 #include <setjmp.h>
    30 
    30 
    31 extern const uint16 SAVEGAME_VERSION = 55;
    31 extern const uint16 SAVEGAME_VERSION = 56;
    32 uint16 _sl_version;       ///< the major savegame version identifier
    32 uint16 _sl_version;       ///< the major savegame version identifier
    33 byte   _sl_minor_version; ///< the minor savegame version, DO NOT USE!
    33 byte   _sl_minor_version; ///< the minor savegame version, DO NOT USE!
    34 
    34 
    35 typedef void WriterProc(uint len);
    35 typedef void WriterProc(uint len);
    36 typedef uint ReaderProc();
    36 typedef uint ReaderProc();