mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-29 16:25:42 +00:00
Removed the extra timestamp formatting change
This commit is contained in:
parent
53869495fd
commit
2a7965dd71
1 changed files with 1 additions and 1 deletions
|
|
@ -682,7 +682,7 @@ static void _printf(ConsoleLogEntry::Level level, ConsoleLogEntry::Type type, co
|
||||||
if (useTimestamp)
|
if (useTimestamp)
|
||||||
{
|
{
|
||||||
U32 curTime = Platform::getRealMilliseconds() - startTime;
|
U32 curTime = Platform::getRealMilliseconds() - startTime;
|
||||||
offset += dSprintf(buffer + offset, sizeof(buffer) - offset, "[ms %4d %03d]", U32(curTime * 0.001), curTime % 1000);
|
offset += dSprintf(buffer + offset, sizeof(buffer) - offset, "[+%4d.%03d]", U32(curTime * 0.001), curTime % 1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (useTimestamp || useRealTimestamp)
|
if (useTimestamp || useRealTimestamp)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue