From 8f1421ee5dec1b9e7ad7ea081ac3ed6b36102510 Mon Sep 17 00:00:00 2001 From: Thomas Anderson <5776225+CrackedPixel@users.noreply.github.com> Date: Sat, 14 Feb 2026 15:10:31 -0600 Subject: [PATCH] fix wrong name (#5552) --- examples/core/core_input_actions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/core/core_input_actions.c b/examples/core/core_input_actions.c index f4b1156d8..d5fd74e84 100644 --- a/examples/core/core_input_actions.c +++ b/examples/core/core_input_actions.c @@ -117,7 +117,7 @@ int main(void) DrawRectangleV(position, size, releaseAction? BLUE : RED); - DrawText((actionSet == 0)? "Current input set: WASD (default)" : "Current input set: Cursor", 10, 10, 20, WHITE); + DrawText((actionSet == 0)? "Current input set: WASD (default)" : "Current input set: Arrow keys", 10, 10, 20, WHITE); DrawText("Use TAB key to toggles Actions keyset", 10, 50, 20, GREEN); EndDrawing();