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,8 +10,8 @@
void sceGuModelColor(unsigned int emissive, unsigned int ambient, unsigned int diffuse, unsigned int specular)
{
sendCommandi(84, emissive & 0xffffff);
sendCommandi(86, diffuse & 0xffffff);
sendCommandi(85, ambient & 0xffffff);
sendCommandi(87, specular & 0xffffff);
sendCommandi(MATERIAL_EMISSIVE, emissive & 0xffffff);
sendCommandi(MATERIAL_DIFFUSE, diffuse & 0xffffff);
sendCommandi(AMBIENT_COLOR, ambient & 0xffffff);
sendCommandi(MATERIAL_SPECULAR, specular & 0xffffff);
}