src/saveload.cpp
branchcpp_gui
changeset 6253 23983700e3d7
parent 6139 e80b90da75e5
child 6254 abc6ad7c035c
equal deleted inserted replaced
6252:ca57ad0b45ea 6253:23983700e3d7
    28 #include "saveload.h"
    28 #include "saveload.h"
    29 #include "network/network.h"
    29 #include "network/network.h"
    30 #include "variables.h"
    30 #include "variables.h"
    31 #include <setjmp.h>
    31 #include <setjmp.h>
    32 
    32 
    33 extern const uint16 SAVEGAME_VERSION = 45;
    33 extern const uint16 SAVEGAME_VERSION = 46;
    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);