From c3d80d1d8ee5367dfdeb9a060f6af3aa3041bfae Mon Sep 17 00:00:00 2001 From: PastMoments <3858420+PastMoments@users.noreply.github.com> Date: Mon, 3 Nov 2025 12:27:01 -0800 Subject: [PATCH] Update to correct default values for SUPPORT_CUSTOM_FRAME_CONTROL and SUPPORT_BUSY_WAIT_LOOP --- CMake-Build-Options.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMake-Build-Options.md b/CMake-Build-Options.md index 0fd2c06..c4db928 100644 --- a/CMake-Build-Options.md +++ b/CMake-Build-Options.md @@ -24,7 +24,7 @@ You must set `CUSTOMIZE_BUILD` to ON in order for many of these options to apply |`SUPPORT_MODULE_RTEXT` | WARNING: It requires SUPPORT_MODULE_RTEXTURES to load sprite font textures | `ON` | |`SUPPORT_MODULE_RMODELS` | ... | `ON` | |`SUPPORT_MODULE_RAUDIO` | ... | `ON` | -|`SUPPORT_BUSY_WAIT_LOOP` | Use busy wait loop for timing sync instead of a high-resolution timer | `ON`| +|`SUPPORT_BUSY_WAIT_LOOP` | Use busy wait loop for timing sync instead of a high-resolution timer | `OFF`| |`SUPPORT_CAMERA_SYSTEM` | Provide camera module (camera.h) with multiple predefined cameras: free, 1st/3rd person, orbital | `ON`| |`SUPPORT_GESTURES_SYSTEM` | Gestures module is included (gestures.h) to support gestures detection: tap, hold, swipe, drag | `ON`| |`SUPPORT_RPRAND_GENERATOR` | pseudo-random numbers generator (rprand.h), based on Xoshiro128** and SplitMix64 | `ON` | @@ -35,7 +35,7 @@ You must set `CUSTOMIZE_BUILD` to ON in order for many of these options to apply |`SUPPORT_GIF_RECORDING` | Allow automatic gif recording of current screen pressing CTRL+F12, defined in KeyCallback() | `ON`| |`SUPPORT_COMPRESSION_API` | ... | `ON` | |`SUPPORT_AUTOMATION_EVENTS` | ... | `ON` | -|`SUPPORT_CUSTOM_FRAME_CONTROL` | ... | `ON` | +|`SUPPORT_CUSTOM_FRAME_CONTROL` | ... | `OFF` | |`SUPPORT_CLIPBOARD_IMAGE` | ... | `ON` | |`SUPPORT_QUADS_DRAW_MODE` | Use QUADS instead of TRIANGLES for drawing when possible. Some lines-based shapes could still use lines | `ON`| |`SUPPORT_FILEFORMAT_PNG` | Support loading PNG as textures | `ON`|