We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5c93d8 commit ac44561Copy full SHA for ac44561
src/gu/sceGuCallList.c
@@ -15,7 +15,7 @@ int sceGuCallList(const void *list)
15
16
if (gu_call_mode == GU_CALL_SIGNAL)
17
{
18
- sendCommandi(SIGNAL, (list_addr >> 16) | 0x110000);
+ sendCommandi(SIGNAL, (0x11 << 16) | (list_addr >> 16));
19
sendCommandi(END, list_addr & 0xffff);
20
}
21
else
src/gu/sceGuFinishId.c
@@ -33,7 +33,7 @@ int sceGuFinishId(unsigned int id)
33
case GU_CALL:
34
35
36
- sendCommandi(SIGNAL, 0x120000);
+ sendCommandi(SIGNAL, 0x12 << 16);
37
sendCommandi(END, 0);
38
39
0 commit comments