diff --git a/ui/welcome.c b/ui/welcome.c index 8e939fa..c2d7401 100644 --- a/ui/welcome.c +++ b/ui/welcome.c @@ -72,7 +72,7 @@ void UI_DisplayWelcome(void) #ifdef ENABLE_FEAT_F4HWN ST7565_ContrastAndInv(); - UI_PrintStringSmallNormal(Version, 0, 128, 5); + UI_PrintStringSmallNormal(Credits, 0, 128, 5); UI_PrintStringSmallNormal(Feat, 0, 128, 6); #else UI_PrintStringSmallNormal(Version, 0, 128, 6); diff --git a/version.c b/version.c index d210ab1..1613d60 100644 --- a/version.c +++ b/version.c @@ -6,7 +6,8 @@ #endif #ifdef ENABLE_FEAT_F4HWN - const char Version[] = AUTHOR_STRING_1 " " VERSION_STRING_1; + const char Version[] = AUTHOR_STRING_2 " " VERSION_STRING_2; + const char Credits[] = AUTHOR_STRING_1 " " VERSION_STRING_1; const char Feat[] = "Feat " AUTHOR_STRING_2 " " VERSION_STRING_2; #else const char Version[] = AUTHOR_STRING VER; diff --git a/version.h b/version.h index e247189..32ada24 100644 --- a/version.h +++ b/version.h @@ -23,5 +23,6 @@ extern const char UART_Version[]; #endif #ifdef ENABLE_FEAT_F4HWN + extern const char Credits[]; extern const char Feat[]; #endif