From 46c16f4127e77c538b89d66efd292c1572ddd6de Mon Sep 17 00:00:00 2001 From: Chris DeBoy Date: Wed, 15 Oct 2025 15:16:55 -0700 Subject: [PATCH] Update rlgl.h - Fixed ALL the typos for realsies this time(I hope). --- src/rlgl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rlgl.h b/src/rlgl.h index a6919b0da..a6eaff9dd 100644 --- a/src/rlgl.h +++ b/src/rlgl.h @@ -2126,7 +2126,7 @@ void rlClearScreenBuffersEx(rlBufferBitFlags flags) // Clear used screen buffers (color and depth) void rlClearScreenBuffers(void) { - rlClearScreenBuffersEX(RL_COLOR_BUFFER_BIT | RL_DEPTH_BUFFER_BIT); // Clear used buffers: Color and Depth (Depth is used for 3D) + rlClearScreenBuffersEx(RL_COLOR_BUFFER_BIT | RL_DEPTH_BUFFER_BIT); // Clear used buffers: Color and Depth (Depth is used for 3D) //glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT); // Stencil buffer not used... }