Fix the blacked out bonus screen and run game.c through astyle

git-svn-id: https://svn.eduke32.com/eduke32@1918 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2011-06-25 16:37:10 +00:00
parent 6509f45dd6
commit 26cd2b309c

View file

@ -1898,7 +1898,11 @@ void G_FadePalette(int32_t r,int32_t g,int32_t b,int32_t e)
void fadepal(int32_t r, int32_t g, int32_t b, int32_t start, int32_t end, int32_t step)
{
if (getrendermode() >= 3) return;
if (getrendermode() >= 3)
{
G_FadePalette(r, g, b, end);
return;
}
if (step > 0)
{