mirror of
https://github.com/pspdev/pspsdk.git
synced 2025-10-03 08:41:34 +00:00
Some other SIGNAL usage improvement
This commit is contained in:
@@ -15,7 +15,7 @@ int sceGuCallList(const void *list)
|
||||
|
||||
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);
|
||||
}
|
||||
else
|
||||
|
@@ -33,7 +33,7 @@ int sceGuFinishId(unsigned int id)
|
||||
case GU_CALL:
|
||||
if (gu_call_mode == GU_CALL_SIGNAL)
|
||||
{
|
||||
sendCommandi(SIGNAL, 0x120000);
|
||||
sendCommandi(SIGNAL, 0x12 << 16);
|
||||
sendCommandi(END, 0);
|
||||
}
|
||||
else
|
||||
|
Reference in New Issue
Block a user