mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-11 17:59:02 +00:00
Fixed: Typos
This commit is contained in:
parent
36f5ec9ac2
commit
540387b4ce
1 changed files with 2 additions and 1 deletions
|
@ -365,11 +365,12 @@ TTime CTime::getLocalTime ()
|
||||||
QueryPerformanceCounter(&counter);
|
QueryPerformanceCounter(&counter);
|
||||||
counter.QuadPart *= (LONGLONG)1000L;
|
counter.QuadPart *= (LONGLONG)1000L;
|
||||||
counter.QuadPart /= a_QueryPerformanceFrequency.QuadPart;
|
counter.QuadPart /= a_QueryPerformanceFrequency.QuadPart;
|
||||||
|
return counter.QuadPart;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// Use default reliable low resolution timer.
|
// Use default reliable low resolution timer.
|
||||||
return getLocalTime();
|
return timeGetTime();
|
||||||
}
|
}
|
||||||
|
|
||||||
#elif defined (NL_OS_UNIX)
|
#elif defined (NL_OS_UNIX)
|
||||||
|
|
Loading…
Reference in a new issue