Some other SIGNAL usage improvement

This commit is contained in:
Francisco Javier Trujillo Mata
2025-06-20 17:16:46 +02:00
parent b5c93d8598
commit ac445612d4
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ int sceGuCallList(const void *list)
if (gu_call_mode == GU_CALL_SIGNAL) if (gu_call_mode == GU_CALL_SIGNAL)
{ {
sendCommandi(SIGNAL, (list_addr >> 16) | 0x110000); sendCommandi(SIGNAL, (0x11 << 16) | (list_addr >> 16));
sendCommandi(END, list_addr & 0xffff); sendCommandi(END, list_addr & 0xffff);
} }
else else

View File

@@ -33,7 +33,7 @@ int sceGuFinishId(unsigned int id)
case GU_CALL: case GU_CALL:
if (gu_call_mode == GU_CALL_SIGNAL) if (gu_call_mode == GU_CALL_SIGNAL)
{ {
sendCommandi(SIGNAL, 0x120000); sendCommandi(SIGNAL, 0x12 << 16);
sendCommandi(END, 0); sendCommandi(END, 0);
} }
else else