diff --git a/CHANGELOG b/CHANGELOG index 658f1eaf..db1dc2fd 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -185,6 +185,7 @@ Detailed changes: [build] ADDED: Repology badge (#2367) by @jubalh [build] ADDED: Support DLL compilation with TCC compiler (#2569) by @audinue [build] ADDED: Missing examples to VS2022 examples solution +[build] REMOVED: SUPPORT_MOUSE_CURSOR_POINT config option [build] REVIEWED: Fixed RPi make install (#2217) by @wereii [build] REVIEWED: Fix build results path on Linux and RPi (#2218) by @wereii [build] REVIEWED: Makefiles debug flag diff --git a/src/config.h b/src/config.h index 6856ce4f..ce7d9b04 100644 --- a/src/config.h +++ b/src/config.h @@ -46,8 +46,6 @@ #define SUPPORT_MOUSE_GESTURES 1 // Reconfigure standard input to receive key inputs, works with SSH connection. #define SUPPORT_SSH_KEYBOARD_RPI 1 -// Draw a mouse pointer on screen -//#define SUPPORT_MOUSE_CURSOR_POINT 1 // Setting a higher resolution can improve the accuracy of time-out intervals in wait functions. // However, it can also reduce overall system performance, because the thread scheduler switches tasks more often. #define SUPPORT_WINMM_HIGHRES_TIMER 1 diff --git a/src/rcore.c b/src/rcore.c index 5f9633fa..c8c66ebf 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -57,9 +57,6 @@ * WARNING: Reconfiguring standard input could lead to undesired effects, like breaking other running processes or * blocking the device if not restored properly. Use with care. * -* #define SUPPORT_MOUSE_CURSOR_POINT -* Draw a mouse pointer on screen -* * #define SUPPORT_BUSY_WAIT_LOOP * Use busy wait loop for timing sync, if not defined, a high-resolution timer is setup and used * @@ -2034,15 +2031,6 @@ void EndDrawing(void) { rlDrawRenderBatchActive(); // Update and draw internal render batch -#if defined(SUPPORT_MODULE_RSHAPES) && defined(SUPPORT_MOUSE_CURSOR_POINT) - // Draw a small rectangle on mouse position for user reference - if (!CORE.Input.Mouse.cursorHidden) - { - DrawRectangle(CORE.Input.Mouse.currentPosition.x, CORE.Input.Mouse.currentPosition.y, 3, 3, MAROON); // WARNING: Module required: rshapes - rlDrawRenderBatchActive(); // Update and draw internal render batch - } -#endif - #if defined(SUPPORT_GIF_RECORDING) // Draw record indicator if (gifRecording)