Skip to content

Commit ac44561

Browse files
committed
Some other SIGNAL usage improvement
1 parent b5c93d8 commit ac44561

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/gu/sceGuCallList.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ int sceGuCallList(const void *list)
1515

1616
if (gu_call_mode == GU_CALL_SIGNAL)
1717
{
18-
sendCommandi(SIGNAL, (list_addr >> 16) | 0x110000);
18+
sendCommandi(SIGNAL, (0x11 << 16) | (list_addr >> 16));
1919
sendCommandi(END, list_addr & 0xffff);
2020
}
2121
else

src/gu/sceGuFinishId.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ int sceGuFinishId(unsigned int id)
3333
case GU_CALL:
3434
if (gu_call_mode == GU_CALL_SIGNAL)
3535
{
36-
sendCommandi(SIGNAL, 0x120000);
36+
sendCommandi(SIGNAL, 0x12 << 16);
3737
sendCommandi(END, 0);
3838
}
3939
else

0 commit comments

Comments
 (0)