function in svn (v783) is
Code: Select all
void sceGuColorFunc(int func, unsigned int color, unsigned int mask)
{
sendCommandi(216,a0 & 0x03);
sendCommandi(217,color & 0xffffff);
sendCommandi(218,a2);
}
Code: Select all
void sceGuColorFunc(int func, unsigned int color, unsigned int mask)
{
sendCommandi(216,func & 0x03);
sendCommandi(217,color & 0xffffff);
sendCommandi(218,mask);
}