mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-06 09:21:27 +00:00
Fix flag mixup in P_GetOldFOFFlags()
This commit is contained in:
parent
3c81938496
commit
16ad23f06d
1 changed files with 4 additions and 4 deletions
|
@ -1910,10 +1910,10 @@ static INT32 P_GetOldFOFFlags(ffloor_t *fflr)
|
||||||
result |= FF_OLD_SPINBUST;
|
result |= FF_OLD_SPINBUST;
|
||||||
if (fflr->busttype == BT_STRONG)
|
if (fflr->busttype == BT_STRONG)
|
||||||
result |= FF_OLD_STRONGBUST;
|
result |= FF_OLD_STRONGBUST;
|
||||||
if (fflr->fofflags & FF_OLD_RIPPLE)
|
if (fflr->fofflags & FOF_RIPPLE)
|
||||||
result |= FOF_RIPPLE;
|
result |= FF_OLD_RIPPLE;
|
||||||
if (fflr->fofflags & FF_OLD_COLORMAPONLY)
|
if (fflr->fofflags & FOF_COLORMAPONLY)
|
||||||
result |= FOF_COLORMAPONLY;
|
result |= FF_OLD_COLORMAPONLY;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue