Fix decleration location of more vars for proper C compliance.

This commit is contained in:
n-a-c-h
2005-02-25 00:55:20 +00:00
parent eb548855e5
commit c5332cc3a1

View File

@@ -1681,15 +1681,15 @@ void DSP4_OP0F()
for (;;) for (;;)
{ {
int16 distance; int16 distance;
int16 color; int16 color, red, green, blue;
distance = DSP4_READ_WORD(); distance = DSP4_READ_WORD();
color = DSP4_READ_WORD(); color = DSP4_READ_WORD();
// U1+B5+G5+R5 // U1+B5+G5+R5
int16 red = color & 0x1f; red = color & 0x1f;
int16 green = (color >> 5) & 0x1f; green = (color >> 5) & 0x1f;
int16 blue = (color >> 10) & 0x1f; blue = (color >> 10) & 0x1f;
// dynamic lighting // dynamic lighting
red = (red * distance >> 15) & 0x1f; red = (red * distance >> 15) & 0x1f;