Changed the F82C425's colors so that the darker ones are more blue, like on the real V86P.

This commit is contained in:
OBattler
2021-09-14 15:35:40 +02:00
parent d438be30d4
commit fa960bec55

View File

@@ -144,7 +144,11 @@ static inline uint32_t f82c425_makecol(uint8_t rgbi, int gs4, int inv)
}
c = 0x10 * gs4 * ((rgbi >> gs4) + 2);
#ifdef NO_BLUE
return makecol(c, c + 0x08, c - 0x20);
#else
return makecol(c, c + 0x08, 0x70);
#endif
}
/* Saturating/non-saturating addition for SMARTMAP(see below). */