Skip to content

Commit 7a1cad3

Browse files
committed
Reviewed input params #3974
1 parent f622021 commit 7a1cad3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/rlgl.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -591,8 +591,8 @@ RLAPI void rlFrustum(double left, double right, double bottom, double top, doubl
591591
RLAPI void rlOrtho(double left, double right, double bottom, double top, double znear, double zfar);
592592
RLAPI void rlViewport(int x, int y, int width, int height); // Set the viewport area
593593
RLAPI void rlSetClipPlanes(double near, double far); // Set clip planes distances
594-
RLAPI double rlGetCullDistanceNear(); // Get cull plane distance near
595-
RLAPI double rlGetCullDistanceFar(); // Get cull plane distance far
594+
RLAPI double rlGetCullDistanceNear(void); // Get cull plane distance near
595+
RLAPI double rlGetCullDistanceFar(void); // Get cull plane distance far
596596

597597
//------------------------------------------------------------------------------------
598598
// Functions Declaration - Vertex level operations
@@ -2038,7 +2038,7 @@ void rlClearScreenBuffers(void)
20382038
}
20392039

20402040
// Check and log OpenGL error codes
2041-
void rlCheckErrors()
2041+
void rlCheckErrors(void)
20422042
{
20432043
#if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
20442044
int check = 1;

0 commit comments

Comments
 (0)