Clipping scissor fix: x offset must only be added once

This commit is contained in:
Flyinghead 2018-07-11 20:06:43 +02:00
parent 527628d366
commit d5d711cf32
1 changed files with 1 additions and 1 deletions

View File

@ -1749,7 +1749,7 @@ bool RenderFrame()
height *= dc2s_scale_h;
}
glScissor(offs_x + min_x, min_y, width, height);
glScissor(min_x, min_y, width, height);
glcache.Enable(GL_SCISSOR_TEST);
}