From 3557f0ba80942397a9d963208695b4fa80290cb0 Mon Sep 17 00:00:00 2001 From: jbzdarkid Date: Tue, 30 Oct 2018 21:58:46 -0700 Subject: Infinite amounts of cleanup --- Source/Version.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Source/Version.h') diff --git a/Source/Version.h b/Source/Version.h index ed79ee5..5aac53d 100644 --- a/Source/Version.h +++ b/Source/Version.h @@ -1,14 +1,14 @@ #pragma once +#define TO_STRING2(s) L#s +#define TO_STRING(s) TO_STRING2(s) + #define MAJOR 3 #define MINOR 0 -#define PATCH 1 - -#define VERSION MAJOR, MINOR, PATCH +#define PATCH 3 -#define TO_STRING2(s) L#s -#define TO_STRING(s) TO_STRING2(s) #define VERSION_STR TO_STRING(MAJOR) L"." TO_STRING(MINOR) L"." TO_STRING(PATCH) +#define VERSION MAJOR, MINOR, PATCH #define PRODUCT_NAME L"Witness Randomizer" #define WINDOW_CLASS L"WitnessRandomizer" -- cgit 1.4.1