From 03d2b79bfdaca0885cd07397ad4e3e1c16615f7d Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Sun, 23 Jun 2013 18:14:29 -0500 Subject: [PATCH] - Fixed: SAVEVERSTRINGIFY macros were wrong. --- src/version.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/version.h b/src/version.h index 6ac3cfcac..0e290c775 100644 --- a/src/version.h +++ b/src/version.h @@ -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