Fix error in r5346 that broke the MoreBlendTab section of PALETTE.DAT.

git-svn-id: https://svn.eduke32.com/eduke32@5365 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2015-09-27 21:18:21 +00:00
parent b0bde3ace5
commit 8f3ee25ae0
1 changed files with 1 additions and 1 deletions

View File

@ -8360,7 +8360,7 @@ static void loadpalette(void)
// additional blending tables
uint8_t magic[12];
if (kread_and_test(fil, magic, sizeof(magic)) && !Bmemcmp(magic, "MoreBlendTab", sizeof(magic)))
if (!kread_and_test(fil, magic, sizeof(magic)) && !Bmemcmp(magic, "MoreBlendTab", sizeof(magic)))
{
uint8_t addblendtabs;
if (kread_and_test(fil, &addblendtabs, 1))