summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorRay <[email protected]>2024-05-12 13:31:38 +0200
committerRay <[email protected]>2024-05-12 13:31:38 +0200
commit7a1cad3e615428d3b7f7dac41f3438e46e061e09 (patch)
tree5790c178e31745c6d2453723b6117f783c3fb627 /src
parentf62202198e35161a9fe394a14bbd1a7c655107ad (diff)
downloadraylib-7a1cad3e615428d3b7f7dac41f3438e46e061e09.tar.gz
raylib-7a1cad3e615428d3b7f7dac41f3438e46e061e09.zip
Reviewed input params #3974
Diffstat (limited to 'src')
-rw-r--r--src/rlgl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rlgl.h b/src/rlgl.h
index 513dd3ed..bef7eaf1 100644
--- a/src/rlgl.h
+++ b/src/rlgl.h
@@ -591,8 +591,8 @@ RLAPI void rlFrustum(double left, double right, double bottom, double top, doubl
RLAPI void rlOrtho(double left, double right, double bottom, double top, double znear, double zfar);
RLAPI void rlViewport(int x, int y, int width, int height); // Set the viewport area
RLAPI void rlSetClipPlanes(double near, double far); // Set clip planes distances
-RLAPI double rlGetCullDistanceNear(); // Get cull plane distance near
-RLAPI double rlGetCullDistanceFar(); // Get cull plane distance far
+RLAPI double rlGetCullDistanceNear(void); // Get cull plane distance near
+RLAPI double rlGetCullDistanceFar(void); // Get cull plane distance far
//------------------------------------------------------------------------------------
// Functions Declaration - Vertex level operations
@@ -2038,7 +2038,7 @@ void rlClearScreenBuffers(void)
}
// Check and log OpenGL error codes
-void rlCheckErrors()
+void rlCheckErrors(void)
{
#if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
int check = 1;