- removed obsolete softpoly render modes

https://forum.zdoom.org/viewtopic.php?t=66888
This commit is contained in:
alexey.lysiuk 2020-01-06 14:31:34 +02:00
parent fca492df2b
commit 7e050010aa
2 changed files with 4 additions and 2 deletions

View file

@ -97,6 +97,10 @@ CUSTOM_CVAR(Int, vid_rendermode, 4, CVAR_ARCHIVE | CVAR_GLOBALCONFIG | CVAR_NOIN
{
self = 4;
}
else if (self == 2 || self == 3)
{
self = self - 2; // softpoly to software
}
if (usergame)
{

View file

@ -2163,8 +2163,6 @@ OptionValue "RenderMode"
{
0, "$OPTVAL_SWDOOM"
1, "$OPTVAL_SWDOOMTC"
2, "$OPTVAL_SWPOLY"
3, "$OPTVAL_SWPOLYTC"
4, "$OPTVAL_HWPOLY"
}