Skip to content

Commit c2299e0

Browse files
authored
Update gc_gl.c
1 parent 5ff5ecb commit c2299e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gc_gl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1035,7 +1035,7 @@ void glScissor(GLint x, GLint y, GLsizei width, GLsizei height)
10351035
{
10361036
glparamstate.scissor[0] = x;
10371037
glparamstate.scissor[1] = y;
1038-
glparamstate.scissor[2] = width > 640 ? 640 : width;
1038+
glparamstate.scissor[2] = width;
10391039
glparamstate.scissor[3] = height;
10401040
glparamstate.dirty.bits.dirty_scissor = 1;
10411041
}

0 commit comments

Comments
 (0)