From ded2f322f16abc89ccec6728ca5e524b1230431f Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Fri, 24 Dec 2021 12:32:14 -0500 Subject: [PATCH] Fix commas in config.cpp --- src/config.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config.cpp b/src/config.cpp index 1d676af..69b23b6 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -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]);