Reviewed comments, remove article usage

This commit is contained in:
Ray
2026-06-03 21:02:59 +02:00
parent ee71f0f870
commit 2c690425c9
8 changed files with 59 additions and 59 deletions

View File

@@ -91,7 +91,7 @@ bool InitGraphicsDevice(void); // Initialize graphics device
// Module Internal Functions Declaration
//----------------------------------------------------------------------------------
#if !defined(_WIN32)
static int kbhit(void); // Check if a key has been pressed
static int kbhit(void); // Check if key has been pressed
static char getch(void) { return getchar(); } // Get pressed character
#endif
@@ -562,7 +562,7 @@ void ClosePlatform(void)
// Module Internal Functions Definition
//----------------------------------------------------------------------------------
#if !defined(_WIN32)
// Check if a key has been pressed
// Check if key has been pressed
static int kbhit(void)
{
struct termios oldt = { 0 };