From 8615e86a0b6c8ecbf3e74b1a67cd190aeb7e057b Mon Sep 17 00:00:00 2001 From: MascaraSnake Date: Sun, 9 Jan 2022 09:27:39 +0100 Subject: [PATCH] P_WriteTextmap: Don't try to write invalid textures --- src/p_setup.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/p_setup.c b/src/p_setup.c index 4ba794781..32d3e93a4 100644 --- a/src/p_setup.c +++ b/src/p_setup.c @@ -2173,11 +2173,11 @@ static void P_WriteTextmap(void) fprintf(f, "offsetx = %d;\n", sides[i].textureoffset >> FRACBITS); if (sides[i].rowoffset != 0) fprintf(f, "offsety = %d;\n", sides[i].rowoffset >> FRACBITS); - if (sides[i].toptexture != 0) + if (sides[i].toptexture > 0 && sides[i].toptexture < numtextures) fprintf(f, "texturetop = \"%.*s\";\n", 8, textures[sides[i].toptexture]->name); - if (sides[i].bottomtexture != 0) + if (sides[i].bottomtexture > 0 && sides[i].bottomtexture < numtextures) fprintf(f, "texturebottom = \"%.*s\";\n", 8, textures[sides[i].bottomtexture]->name); - if (sides[i].midtexture != 0) + if (sides[i].midtexture > 0 && sides[i].midtexture < numtextures) fprintf(f, "texturemiddle = \"%.*s\";\n", 8, textures[sides[i].midtexture]->name); if (sides[i].repeatcnt != 0) fprintf(f, "repeatcnt = %d;\n", sides[i].repeatcnt);