diff options
| author | Ray <[email protected]> | 2021-03-08 19:19:43 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2021-03-08 19:19:43 +0100 |
| commit | 915b0780d68990c1bc861fdfc7759ba10fe946ac (patch) | |
| tree | 53bdad12d28d1c3a26cdcabead07c7d48a658adb /examples | |
| parent | 55bf595cae484e942489e0f8bd48811af9b0bb44 (diff) | |
| download | raylib-915b0780d68990c1bc861fdfc7759ba10fe946ac.tar.gz raylib-915b0780d68990c1bc861fdfc7759ba10fe946ac.zip | |
Update core_3d_picking.c
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/core/core_3d_picking.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/core/core_3d_picking.c b/examples/core/core_3d_picking.c index 01fe2b55..1360f006 100644 --- a/examples/core/core_3d_picking.c +++ b/examples/core/core_3d_picking.c @@ -90,7 +90,7 @@ int main(void) DrawText("Try selecting the box with mouse!", 240, 10, 20, DARKGRAY); - if(collision) DrawText("BOX SELECTED", (screenWidth - MeasureText("BOX SELECTED", 30)) / 2, (int)(screenHeight * 0.1f), 30, GREEN); + if (collision) DrawText("BOX SELECTED", (screenWidth - MeasureText("BOX SELECTED", 30)) / 2, (int)(screenHeight * 0.1f), 30, GREEN); DrawFPS(10, 10); |
