Improving SCE GU readability

This commit is contained in:
Francisco Javier Trujillo Mata
2024-07-22 22:49:13 +02:00
parent ebae12f13f
commit 191880f973
66 changed files with 1312 additions and 482 deletions

View File

@@ -10,6 +10,6 @@
void sceGuPixelMask(unsigned int mask)
{
sendCommandi(232,mask & 0xffffff);
sendCommandi(233,mask >> 24);
sendCommandi(MASK_COLOR, mask & 0xffffff);
sendCommandi(MASK_ALPHA, mask >> 24);
}