From 24f43b973a65e3e76e08dd20fa1a6d428f886933 Mon Sep 17 00:00:00 2001 From: elasota Date: Sun, 7 Jun 2020 22:17:02 -0400 Subject: [PATCH] Fix build timestamp --- GpApp/About.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GpApp/About.cpp b/GpApp/About.cpp index dbc6fe0..d636836 100644 --- a/GpApp/About.cpp +++ b/GpApp/About.cpp @@ -144,7 +144,7 @@ void DoAboutFramework (void) surface->DrawString(Point::Create(horizontalOffset, verticalPoint + spacing * 16), PSTR("For more information, please see the accompanying documentation."), blackColor, font); - surface->DrawString(Point::Create(horizontalOffset, windowRect.bottom - 16), PSTR("Build: " __TIMESTAMP__ " " ABOUT_DIALOG_CONFIGURATION_TAG), blackColor, fontLight); + surface->DrawString(Point::Create(horizontalOffset, windowRect.bottom - 16), PSTR("Build: " __DATE__ " " __TIME__ " " ABOUT_DIALOG_CONFIGURATION_TAG), blackColor, fontLight); DrawDefaultButton(dialog);