mirror of
https://github.com/pspdev/pspsdk.git
synced 2025-10-04 09:08:30 +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)
|
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
|
||||||
|
@@ -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
|
||||||
|
Reference in New Issue
Block a user