From 4d6ef19fcc53cd2459ce53cdcf791454c7c201d1 Mon Sep 17 00:00:00 2001 From: Thomas Anderson <5776225+CrackedPixel@users.noreply.github.com> Date: Sat, 14 Feb 2026 15:12:11 -0600 Subject: [PATCH] change on-screen text (#5553) --- examples/core/core_2d_camera_platformer.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/examples/core/core_2d_camera_platformer.c b/examples/core/core_2d_camera_platformer.c index 49d0a940c..8f443acba 100644 --- a/examples/core/core_2d_camera_platformer.c +++ b/examples/core/core_2d_camera_platformer.c @@ -148,10 +148,11 @@ int main(void) DrawText("Controls:", 20, 20, 10, BLACK); DrawText("- Right/Left to move", 40, 40, 10, DARKGRAY); DrawText("- Space to jump", 40, 60, 10, DARKGRAY); - DrawText("- Mouse Wheel to Zoom in-out, R to reset zoom", 40, 80, 10, DARKGRAY); - DrawText("- C to change camera mode", 40, 100, 10, DARKGRAY); - DrawText("Current camera mode:", 20, 120, 10, BLACK); - DrawText(cameraDescriptions[cameraOption], 40, 140, 10, DARKGRAY); + DrawText("- Mouse Wheel to Zoom in-out", 40, 80, 10, DARKGRAY); + DrawText("- R to reset position + zoom", 40, 100, 10, DARKGRAY); + DrawText("- C to change camera mode", 40, 120, 10, DARKGRAY); + DrawText("Current camera mode:", 20, 140, 10, BLACK); + DrawText(cameraDescriptions[cameraOption], 40, 160, 10, DARKGRAY); EndDrawing(); //----------------------------------------------------------------------------------