You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible for the above line to be changed to strftime(str + strlen(str), sizeof(str) - 1 - strlen(str), "%b %d %I:%M:%S %p", &tm);
or strftime(str + strlen(str), sizeof(str) - 1 - strlen(str), "%b %d %r", &tm);
This drops %a Abbreviated weekday name in favor of a 12 Hour clock with AM/PM. If the Abbreviated weekday name is more important the %S seconds could be dropped instead.
Perhaps this format string could even be an ini setting?
Thanks
The text was updated successfully, but these errors were encountered:
Please don't change to 12hr globally. The majority of the world uses 24hr. An option for 12hr is reasonable, like most devices. A nice idea is to also update the timezone script to toggle it automatically.
Main_MiSTer/menu.cpp
Line 6966 in f8d5f51
Hello,
Would it be possible for the above line to be changed to
strftime(str + strlen(str), sizeof(str) - 1 - strlen(str), "%b %d %I:%M:%S %p", &tm);
or
strftime(str + strlen(str), sizeof(str) - 1 - strlen(str), "%b %d %r", &tm);
This drops %a Abbreviated weekday name in favor of a 12 Hour clock with AM/PM. If the Abbreviated weekday name is more important the %S seconds could be dropped instead.
Perhaps this format string could even be an ini setting?
Thanks
The text was updated successfully, but these errors were encountered: