Fix typos in src/platforms/rcore_*.c (#3581)

This commit is contained in:
RadsammyT
2023-11-28 14:39:10 -05:00
committed by GitHub
parent 1906f1eddf
commit fe53ba80dd
5 changed files with 14 additions and 14 deletions

View File

@ -420,7 +420,7 @@ void PollInputEvents(void)
CORE.Input.Keyboard.keyRepeatInFrame[i] = 0;
}
// TODO: Poll input events for current plaform
// TODO: Poll input events for current platform
}
@ -561,13 +561,13 @@ int InitPlatform(void)
// TODO: Initialize input events system
// It could imply keyboard, mouse, gamepad, touch...
// Depending on the platform libraries/SDK it could use a callbacks mechanims
// Depending on the platform libraries/SDK it could use a callback mechanism
// For system events and inputs evens polling on a per-frame basis, use PollInputEvents()
//----------------------------------------------------------------------------
// ...
//----------------------------------------------------------------------------
// TODO: Initialize timming system
// TODO: Initialize timing system
//----------------------------------------------------------------------------
InitTimer();
//----------------------------------------------------------------------------