Forgot to stage compilation fix

This commit is contained in:
toaster 2022-12-13 18:10:47 +00:00
parent ff1574f80f
commit b26da37477

View file

@ -2165,7 +2165,7 @@ void reademblemdata(MYFILE *f, INT32 num)
emblemlocations[num-1].var = get_number(word2);
}
else if (fastcmp(word, "NOTMEDAL"))
emblemlocations[num-1].notMedal = (boolean)(i != 0 || word2[0] == 'T' || word2[0] == 'Y');
emblemlocations[num-1].notMedal = (boolean)(value != 0 || word2[0] == 'T' || word2[0] == 'Y');
else
deh_warning("Emblem %d: unknown word '%s'", num, word);
}