Fix scissor causing graphical issues

This commit is contained in:
Wouter Wijsman
2025-07-08 13:25:05 +02:00
parent c1debe88e3
commit 6a32e2f325
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ void sceGuEnable(int state)
context->scissor_enable = 1;
sendCommandi(SCISSOR1, orig);
sendCommandi(SCISSOR2, end);
sendCommandi(REGION1, orig);
sendCommandi(REGION1, 0);
sendCommandi(REGION2, end);
}
break;

View File

@@ -24,7 +24,7 @@ void sceGuScissor(int x, int y, int w, int h)
sendCommandi(SCISSOR1, orig);
sendCommandi(SCISSOR2, end);
sendCommandi(REGION1, orig);
sendCommandi(REGION1, 0);
sendCommandi(REGION2, end);
}
}