Use sizeu1()

This commit is contained in:
Nev3r 2020-11-10 12:34:08 +01:00
parent d5355a11b0
commit b65211d148
1 changed files with 1 additions and 1 deletions

View File

@ -5510,7 +5510,7 @@ static ffloor_t *P_AddFakeFloor(sector_t *sec, sector_t *sec2, line_t *master, f
{
fixed_t tempceiling = sec2->ceilingheight;
//flip the sector around and print an error instead of crashing 12.1.08 -Inuyasha
CONS_Alert(CONS_ERROR, M_GetText("FOF (line %d) has a top height below its bottom.\n"), master - lines);
CONS_Alert(CONS_ERROR, M_GetText("FOF (line %d) has a top height below its bottom.\n"), sizeu1(master - lines));
sec2->ceilingheight = sec2->floorheight;
sec2->floorheight = tempceiling;
}