From e3b3d6f7fffa9ad1e4af7b1976c991b294eb09b0 Mon Sep 17 00:00:00 2001 From: Olivier Galibert Date: Thu, 1 Jun 2017 13:47:43 +0200 Subject: let's be standard (nw) --- src/frontend/mame/ui/state.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/mame/ui/state.cpp b/src/frontend/mame/ui/state.cpp index 59734909d53..dd0720ec601 100644 --- a/src/frontend/mame/ui/state.cpp +++ b/src/frontend/mame/ui/state.cpp @@ -154,7 +154,7 @@ void menu_load_save_state_base::populate(float &customtop, float &custombottom) // get the time as a local time string char time_string[128]; auto last_modified_time_t = std::chrono::system_clock::to_time_t(entry->last_modified()); - std::strftime(time_string, sizeof(time_string), "%#c", std::localtime(&last_modified_time_t)); + std::strftime(time_string, sizeof(time_string), "%c", std::localtime(&last_modified_time_t)); // format the text std::string text = util::string_format("%s: %s", -- cgit v1.2.3