From b65211d1481b1813d02276e3e007c28bec7b2d3e Mon Sep 17 00:00:00 2001 From: Nev3r Date: Tue, 10 Nov 2020 12:34:08 +0100 Subject: [PATCH] Use sizeu1() --- src/p_spec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_spec.c b/src/p_spec.c index 0746c65b0..417c94c99 100644 --- a/src/p_spec.c +++ b/src/p_spec.c @@ -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; }