src/saveload.cpp
changeset 7740 31ef7e9cc0c0
parent 7683 cd00f3932777
child 7754 8e7205edd6c7
equal deleted inserted replaced
7739:3ce5bb98aa7d 7740:31ef7e9cc0c0
    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 = 69;
    33 extern const uint16 SAVEGAME_VERSION = 70;
    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();