maddogjt1
Joined: 27 Jun 2005 Posts: 13
|
Posted: Wed Jul 27, 2005 10:19 am Post subject: bug in sceGuColorFunc.c |
|
|
It won't build.
function in svn (v783) is
| Code: |
void sceGuColorFunc(int func, unsigned int color, unsigned int mask)
{
sendCommandi(216,a0 & 0x03);
sendCommandi(217,color & 0xffffff);
sendCommandi(218,a2);
}
|
but a0 and a2 are not defined. I believe this function is suppsed to be
| Code: |
void sceGuColorFunc(int func, unsigned int color, unsigned int mask)
{
sendCommandi(216,func & 0x03);
sendCommandi(217,color & 0xffffff);
sendCommandi(218,mask);
}
|
|
|