Fix Gradius 3 in 16-bit color modes. [Gamez Fan, IQ_132]

This commit is contained in:
iq_132 2014-11-04 23:52:55 +00:00
parent 14971e9fcf
commit 209f0cafe3
1 changed files with 1 additions and 1 deletions

View File

@ -695,7 +695,7 @@ static inline void DrvRecalcPalette()
g = (g << 3) | (g >> 2);
b = (b << 3) | (b >> 2);
DrvPalette[i] = BurnHighCol(r, g, b, 0);
DrvPalette[i] = (r<<16)+(g<<8)+b;
}
}