summaryrefslogtreecommitdiff
path: root/src/hexen/p_switch.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hexen/p_switch.c')
-rw-r--r--src/hexen/p_switch.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/hexen/p_switch.c b/src/hexen/p_switch.c
index 9d86f92a..92bd0be4 100644
--- a/src/hexen/p_switch.c
+++ b/src/hexen/p_switch.c
@@ -66,6 +66,13 @@ void P_InitSwitchList(void)
switchlist[index] = -1;
break;
}
+
+ if (R_CheckTextureNumForName(alphSwitchList[i].name1) == -1 &&
+ gamemode == shareware)
+ {
+ continue;
+ }
+
switchlist[index++] = R_TextureNumForName(alphSwitchList[i].name1);
switchlist[index++] = R_TextureNumForName(alphSwitchList[i].name2);
}