mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-22 12:31:32 +00:00
fug
This commit is contained in:
parent
191bd8ec41
commit
2247de431c
1 changed files with 3 additions and 3 deletions
|
@ -1325,15 +1325,15 @@ static void readlevelheader(MYFILE *f, INT32 num)
|
||||||
// miru: we can build custom map header words here
|
// miru: we can build custom map header words here
|
||||||
else if (fastcmp(word, "LEVELWIPE"))
|
else if (fastcmp(word, "LEVELWIPE"))
|
||||||
{
|
{
|
||||||
mapheaderinfo[num-1]->levelwipe = (INT16)i;
|
mapheaderinfo[num-1]->levelwipe = (UINT8)i;
|
||||||
}
|
}
|
||||||
else if (fastcmp(word, "POSTLEVELWIPE"))
|
else if (fastcmp(word, "POSTLEVELWIPE"))
|
||||||
{
|
{
|
||||||
mapheaderinfo[num-1]->postlevelwipe = (INT16)i;
|
mapheaderinfo[num-1]->postlevelwipe = (UINT8)i;
|
||||||
}
|
}
|
||||||
else if (fastcmp(word, "WIPECOLOR"))
|
else if (fastcmp(word, "WIPECOLOR"))
|
||||||
{
|
{
|
||||||
mapheaderinfo[num-1]->wipecolor = (INT16)i;
|
mapheaderinfo[num-1]->wipecolor = (UINT8)i;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
deh_warning("Level header %d: unknown word '%s'", num, word);
|
deh_warning("Level header %d: unknown word '%s'", num, word);
|
||||||
|
|
Loading…
Reference in a new issue