mirror of
https://github.com/pspdev/pspsdk.git
synced 2025-10-04 09:08:30 +00:00
Fixing sceGUScissor
This commit is contained in:
@@ -14,8 +14,8 @@ void sceGuScissor(int x, int y, int w, int h)
|
|||||||
|
|
||||||
context->scissor_start[0] = x;
|
context->scissor_start[0] = x;
|
||||||
context->scissor_start[1] = y;
|
context->scissor_start[1] = y;
|
||||||
context->scissor_end[0] = w - 1;
|
context->scissor_end[0] = x + w - 1;
|
||||||
context->scissor_end[1] = h - 1;
|
context->scissor_end[1] = y +h - 1;
|
||||||
|
|
||||||
if (context->scissor_enable)
|
if (context->scissor_enable)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user