mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
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:
parent
b0bde3ace5
commit
8f3ee25ae0
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue