SW: Fix an assertion failure in palette changing code

git-svn-id: https://svn.eduke32.com/eduke32@8300 1a8010ca-5511-0410-912e-c29ae57300e0

# Conflicts:
#	source/build/src/palette.cpp
This commit is contained in:
hendricks266 2019-11-26 08:24:26 +00:00 committed by Christoph Oelckers
parent fd3ec56827
commit 31f8cb4def

View file

@ -747,7 +747,7 @@ void videoSetPalette(char dabrightness, uint8_t dapalid, uint8_t flags)
int32_t palsumdidchange;
// uint32_t lastbright = curbrightness;
Bassert((flags & 4) == 0);
// Bassert((flags&4)==0); // What is so bad about this flag?
if (/*(unsigned)dapalid >= MAXBASEPALS ||*/ basepaltable[dapalid] == NULL)
dapalid = 0;