소스 검색

Removed the extra timestamp formatting change

Areloch 2 년 전
부모
커밋
2a7965dd71
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Engine/source/console/console.cpp

+ 1 - 1
Engine/source/console/console.cpp

@@ -682,7 +682,7 @@ static void _printf(ConsoleLogEntry::Level level, ConsoleLogEntry::Type type, co
    if (useTimestamp)
    {
       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)