From 3e225f97a276023d1675c3117ff28276eff35c5e Mon Sep 17 00:00:00 2001 From: James R Date: Sun, 11 Feb 2024 17:04:51 -0800 Subject: [PATCH] Render errored holey textures as TRANSERx --- src/r_segs.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/r_segs.cpp b/src/r_segs.cpp index e25b1415f..60012fe80 100644 --- a/src/r_segs.cpp +++ b/src/r_segs.cpp @@ -2068,7 +2068,8 @@ void R_StoreWallRange(INT32 start, INT32 stop) if (textures[texnum]->holes) { srb2::r_debug::add_texture_to_frame_list(texnum); - return 0; // R_DrawWallColumn cannot render holey textures + // R_DrawWallColumn cannot render holey textures + return R_GetTextureNum(R_CheckTextureNumForName("TRANSER1")); } return texnum; };