Codechange: move misc settings to std::string

This commit is contained in:
rubidium42
2021-04-28 17:32:33 +02:00
committed by rubidium42
parent 77330d09fd
commit 95386dc2b8
7 changed files with 37 additions and 45 deletions

View File

@@ -934,7 +934,7 @@ static inline void SlSkipBytes(size_t length)
for (; length != 0; length--) SlReadByte();
}
extern char _savegame_format[8];
extern std::string _savegame_format;
extern bool _do_autosave;
#endif /* SAVELOAD_H */