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.