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); } }