- cleaning out a few more parts of the software renderer.

This commit is contained in:
Christoph Oelckers 2020-03-29 15:54:02 +02:00
parent 3f69044770
commit 7392b699e4
9 changed files with 19 additions and 306 deletions

View file

@ -442,13 +442,6 @@ static int32_t defsparser(scriptfile *script)
if ((unsigned)col < 256)
{
r = clamp(r, 0, 63);
g = clamp(g, 0, 63);
b = clamp(b, 0, 63);
vgapal16[col*4+0] = b<<2; // blue
vgapal16[col*4+1] = g<<2; // green
vgapal16[col*4+2] = r<<2; // red
}
}
break;