- Fixed: SAVEVERSTRINGIFY macros were wrong.

This commit is contained in:
Randy Heit 2013-06-23 18:14:29 -05:00
parent d1835b2db8
commit 03d2b79bfd
1 changed files with 2 additions and 2 deletions

View File

@ -78,8 +78,8 @@ const char *GetVersionString();
// SVN revision ever got.
#define SAVEVER 4500
#define SAVEVERSTRINGIFY2(x) str(x)
#define SAVEVERSTRINGIFY(x) #x
#define SAVEVERSTRINGIFY2(x) #x
#define SAVEVERSTRINGIFY(x) SAVEVERSTRINGIFY2(x)
#define SAVESIG "ZDOOMSAVE" SAVEVERSTRINGIFY(SAVEVER)
// This is so that derivates can use the same savegame versions without worrying about engine compatibility