src/saveload.cpp
changeset 7445 4d96e6e94d88
parent 7401 7a72cc2a1196
child 7449 82bf2769bffa
equal deleted inserted replaced
7444:4ca8f3080371 7445:4d96e6e94d88
    28 #include "table/strings.h"
    28 #include "table/strings.h"
    29 #include "strings.h"
    29 #include "strings.h"
    30 #include <setjmp.h>
    30 #include <setjmp.h>
    31 #include <list>
    31 #include <list>
    32 
    32 
    33 extern const uint16 SAVEGAME_VERSION = 72;
    33 extern const uint16 SAVEGAME_VERSION = 73;
    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();
    38 typedef uint ReaderProc();