From d3199ac779cce0f05651b117324d6cf87432236d Mon Sep 17 00:00:00 2001 From: James R Date: Sat, 14 Nov 2020 16:18:54 -0800 Subject: [PATCH] Fix one last instance of printing address diff --- src/p_setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_setup.c b/src/p_setup.c index 102c9b9a7..d3e91d71a 100644 --- a/src/p_setup.c +++ b/src/p_setup.c @@ -1341,7 +1341,7 @@ static void P_LoadSidedefs(UINT8 *data) || (msd->toptexture[0] >= 'A' && msd->toptexture[0] <= 'F')) sd->toptexture = axtoi(msd->toptexture); else - I_Error("Custom FOF (line id %d) needs a value in the linedef's back side upper texture field.", sd->line - lines); + I_Error("Custom FOF (line id %s) needs a value in the linedef's back side upper texture field.", sizeu1(sd->line - lines)); sd->midtexture = R_TextureNumForName(msd->midtexture); sd->bottomtexture = R_TextureNumForName(msd->bottomtexture);