More complete default date/time string

This commit is contained in:
Tyler Perkins 2021-12-22 21:09:50 -05:00
parent 5a9273e11b
commit c968effe55
1 changed files with 4 additions and 1 deletions

View File

@ -29,5 +29,8 @@ namespace dashboard::panel {
//for more on how this string format works, refer to
//https://en.cppreference.com/w/cpp/chrono/c/strftime
constexpr char DEF_OVERLAY_DATE_STRING[] = "%a %I:%M %p";
//
//By default will display date in format of
//"Wed Dec 22 10:00 PM"
constexpr char DEF_OVERLAY_DATE_STRING[] = "%a %b %d %I:%M %p";
}