From 6a32e2f325a4ec5eb778aff4b7f0cf74ac0247e4 Mon Sep 17 00:00:00 2001 From: Wouter Wijsman Date: Tue, 8 Jul 2025 13:25:05 +0200 Subject: [PATCH] Fix scissor causing graphical issues --- src/gu/sceGuEnable.c | 2 +- src/gu/sceGuScissor.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gu/sceGuEnable.c b/src/gu/sceGuEnable.c index ba2b78f5..84e1c33c 100644 --- a/src/gu/sceGuEnable.c +++ b/src/gu/sceGuEnable.c @@ -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; diff --git a/src/gu/sceGuScissor.c b/src/gu/sceGuScissor.c index 8680ab0b..8f76a8a5 100644 --- a/src/gu/sceGuScissor.c +++ b/src/gu/sceGuScissor.c @@ -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); } }