src/saveload.cpp
changeset 6959 0066ab0d9b93
parent 6950 c572b218bf2f
child 6982 c414fad6c440
equal deleted inserted replaced
6958:dc65e6e53c24 6959:0066ab0d9b93
    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 = 54;
    31 extern const uint16 SAVEGAME_VERSION = 55;
    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();