From 4b1826a64ae878c1c2de0daa9d022a488b76faab Mon Sep 17 00:00:00 2001 From: msun_ <63697277+msun-dev@users.noreply.github.com> Date: Tue, 3 Mar 2026 18:21:18 +0500 Subject: [PATCH] Updated file in *core module* link from core.c to rcore.c. --- raylib-input-system.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raylib-input-system.md b/raylib-input-system.md index 29bd517..6cc7888 100644 --- a/raylib-input-system.md +++ b/raylib-input-system.md @@ -1,4 +1,4 @@ -raylib input system basically uses an event polling mechanism, centralized on raylib [core module](https://github.com/raysan5/raylib/blob/master/src/core.c). +raylib input system basically uses an event polling mechanism, centralized on raylib [core module](https://github.com/raysan5/raylib/blob/master/src/rcore.c). At the end of the game loop, `EndDrawing()` function is called. This function calls `SwapBuffers()` and `PollInputEvents()`, multiple input devices are scanned at that moment and states are registered.