Add threadlock and universal fs functions

This commit is contained in:
murdle
2026-03-01 23:19:08 +02:00
parent 5b984ad854
commit f0632c2364
92 changed files with 618 additions and 281 deletions

View File

@@ -28,7 +28,7 @@ void PerformanceTimer::PrintElapsedTime(const wstring &description)
QueryPerformanceCounter( &qwNewTime );
qwDeltaTime.QuadPart = qwNewTime.QuadPart - m_qwStartTime.QuadPart;
float fElapsedTime = m_fSecsPerTick * ((FLOAT)(qwDeltaTime.QuadPart));
float fElapsedTime = m_fSecsPerTick * ((float)(qwDeltaTime.QuadPart));
app.DebugPrintf("TIMER: %ls: Elapsed time %f\n", description.c_str(), fElapsedTime);
#endif