From 6cebf63cba7eb54fe01fa5f20c9f38227906ac40 Mon Sep 17 00:00:00 2001 From: Thomas Prowse <152029833+SardineMilk@users.noreply.github.com> Date: Tue, 10 Mar 2026 23:21:53 +0000 Subject: [PATCH] Change `GetRenderWidth()` to `GetScreenWidth()` for consistency (#5635) --- examples/models/models_basic_voxel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/models/models_basic_voxel.c b/examples/models/models_basic_voxel.c index 61313ecef..b0f4bc65e 100644 --- a/examples/models/models_basic_voxel.c +++ b/examples/models/models_basic_voxel.c @@ -137,7 +137,7 @@ int main(void) EndMode3D(); // Draw reference point for raycasting to delete blocks - DrawCircle(GetRenderWidth()/2, GetScreenHeight()/2, 4, RED); + DrawCircle(GetScreenWidth()/2, GetScreenHeight()/2, 4, RED); DrawText("Left-click a voxel to remove it!", 10, 10, 20, DARKGRAY); DrawText("WASD to move, mouse to look around", 10, 35, 10, GRAY);