mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-12-26 10:24:14 +08:00
language independent time/date format
This commit is contained in:
parent
75b2423a25
commit
0f6b32c248
@ -1339,7 +1339,8 @@ void Steam_Overlay::render_main_window()
|
|||||||
if (achieved) {
|
if (achieved) {
|
||||||
char buffer[80] = {};
|
char buffer[80] = {};
|
||||||
time_t unlock_time = (time_t)x.unlock_time;
|
time_t unlock_time = (time_t)x.unlock_time;
|
||||||
std::strftime(buffer, 80, "%Y-%m-%d at %H:%M:%S", std::localtime(&unlock_time));
|
// TODO add this format to the overlay_appearance.txt
|
||||||
|
std::strftime(buffer, 80, "%Y/%m/%d - %H:%M:%S", std::localtime(&unlock_time));
|
||||||
|
|
||||||
ImGui::TextColored(ImVec4(0, 255, 0, 255), translationAchievedOn[current_language], buffer);
|
ImGui::TextColored(ImVec4(0, 255, 0, 255), translationAchievedOn[current_language], buffer);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user