diff --git a/components/openmw-mp/Log.cpp b/components/openmw-mp/Log.cpp index def1eaad1..f46938616 100644 --- a/components/openmw-mp/Log.cpp +++ b/components/openmw-mp/Log.cpp @@ -111,7 +111,7 @@ string Log::getFilenameTimestamp() time_t rawtime = time(0); struct tm *timeinfo = localtime(&rawtime); char buffer[25]; - strftime(buffer, 25, "%Y-%m-%d-%I_%M_%S", timeinfo); + strftime(buffer, 25, "%Y-%m-%d-%H_%M_%S", timeinfo); std::string timestamp(buffer); return timestamp; }