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).
This commit is contained in:
Daniel Caujolle-Bert 2025-04-27 10:30:07 +02:00
parent 5a489bff1e
commit 0de40d65cd

View file

@ -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