Skip to content

Commit

Permalink
use unused variable. Fixes #4560 (#4561)
Browse files Browse the repository at this point in the history
  • Loading branch information
RicoP authored Dec 1, 2024
1 parent e181069 commit ff71e3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rlgl.h
Original file line number Diff line number Diff line change
Expand Up @@ -3959,7 +3959,7 @@ void rlDrawVertexArrayElements(int offset, int count, const void *buffer)
void rlDrawVertexArrayInstanced(int offset, int count, int instances)
{
#if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
glDrawArraysInstanced(GL_TRIANGLES, 0, count, instances);
glDrawArraysInstanced(GL_TRIANGLES, offset, count, instances);
#endif
}

Expand Down

0 comments on commit ff71e3a

Please sign in to comment.