REVIEWED: Right timing

This commit is contained in:
Ray
2026-02-24 01:26:07 +01:00
parent d4dc038e2e
commit ade81248c3
8 changed files with 10 additions and 10 deletions

View File

@ -1782,7 +1782,7 @@ int InitPlatform(void)
}
//----------------------------------------------------------------------------
// Initialize timming system
// Initialize timing system
//----------------------------------------------------------------------------
InitTimer();
//----------------------------------------------------------------------------

View File

@ -1655,7 +1655,7 @@ int InitPlatform(void)
TRACELOG(LOG_INFO, " > GLSL: %s", "NOT SUPPORTED");
}
// Initialize timming system
// Initialize timing system
//----------------------------------------------------------------------------
LARGE_INTEGER time = { 0 };
QueryPerformanceCounter(&time);

View File

@ -1613,7 +1613,7 @@ int InitPlatform(void)
//----------------------------------------------------------------------------
// Initialize timing system
//----------------------------------------------------------------------------
// NOTE: timming system must be initialized before the input events system
// NOTE: timing system must be initialized before the input events system
InitTimer();
//----------------------------------------------------------------------------

View File

@ -55,7 +55,7 @@
//----------------------------------------------------------------------------------
// Types and Structures Definition
//----------------------------------------------------------------------------------
// Platform-specific required data for timming (Win32)
// Platform-specific required data for timing (Win32)
#if defined(_WIN32)
typedef struct _LARGE_INTEGER { int64_t QuadPart; } LARGE_INTEGER;
__declspec(dllimport) int __stdcall QueryPerformanceCounter(LARGE_INTEGER *lpPerformanceCount);

View File

@ -1593,7 +1593,7 @@ Vector2 GetScreenToWorld2D(Vector2 position, Camera2D camera)
}
//----------------------------------------------------------------------------------
// Module Functions Definition: Timming
// Module Functions Definition: Timing
//----------------------------------------------------------------------------------
// NOTE: Functions with a platform-specific implementation on rcore_<platform>.c