spaces->underscores:)

This commit is contained in:
LunaMoo
2017-11-14 09:46:31 +01:00
parent 825e100614
commit e78a644c00
3 changed files with 4 additions and 4 deletions

View File

@@ -185,6 +185,6 @@ std::string KernelTimeNowFormatted() {
u8 days = timePtr->tm_mday;
u8 months = timePtr->tm_mon + 1;
u16 years = timePtr->tm_year + 1900;
std::string timestamp = StringFromFormat("%04d-%02d-%02d %02d-%02d-%02d", years, months, days, hours, minutes, seconds);
std::string timestamp = StringFromFormat("%04d-%02d-%02d_%02d-%02d-%02d", years, months, days, hours, minutes, seconds);
return timestamp;
}