Fix commas in config.cpp

This commit is contained in:
Tyler Perkins 2021-12-24 12:32:14 -05:00
parent 1e34f6809d
commit ded2f322f1
1 changed files with 3 additions and 3 deletions

View File

@ -97,9 +97,9 @@ const FONT_SIZE_STRING CONST_STRINGS[] = {
{ "Day after,", { "Roboto_Mono/RobotoMono-Medium.ttf", 50 } },
//Plex
{ "Historical", {"Roboto_Mono/RobotoMono-Medium.ttf", 28} }
{ "Playing", {"Roboto_Mono/RobotoMono-Medium.ttf", 28} }
{ "Top Users", {"Roboto_Mono/RobotoMono-Medium.ttf", 50} }
{ "Historical", {"Roboto_Mono/RobotoMono-Medium.ttf", 28} },
{ "Playing", {"Roboto_Mono/RobotoMono-Medium.ttf", 28} },
{ "Top Users", {"Roboto_Mono/RobotoMono-Medium.ttf", 50} },
};
size_t CONST_STRINGS_LENGTH = sizeof(CONST_STRINGS)/sizeof(CONST_STRINGS[0]);