From 0de40d65cd435947f83861e8c5eab39049b31bfe Mon Sep 17 00:00:00 2001 From: Daniel Caujolle-Bert Date: Sun, 27 Apr 2025 10:30:07 +0200 Subject: [PATCH] Don't rely to __WXDEBUG__, as once wx/debug is included, it's defined, despite setting wxDEBUG_LEVEL=0. Fix non-debug build date (matching debug one). --- Common/Version.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Common/Version.h b/Common/Version.h index 477d0c1..744fb56 100644 --- a/Common/Version.h +++ b/Common/Version.h @@ -23,10 +23,10 @@ const wxString VENDOR_NAME = wxT("G4KLX"); -#if defined(__WXDEBUG__) +#if defined(_DEBUG) const wxString VERSION = wxT("20200621 - DEBUG"); #else -const wxString VERSION = wxT("20190621"); +const wxString VERSION = wxT("20200621"); #endif #endif