mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 14:51:46 +00:00
- use 0 as the default for r_vanillatrans.
As nice as the automatic is, this will trigger far too many cases where it will disable translucency for mods that only change some texts. Dehacked is very often only used for non-actor related modifications. If the automatic is supposed to be the default it needs to do a lot more thorough checks to avoid bug reports due to misunderstanding the feature.
This commit is contained in:
parent
c18134dbd3
commit
1cb3514b05
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@
|
|||
#endif
|
||||
|
||||
bool r_UseVanillaTransparency;
|
||||
CVAR (Int, r_vanillatrans, 2, CVAR_ARCHIVE)
|
||||
CVAR (Int, r_vanillatrans, 0, CVAR_ARCHIVE)
|
||||
|
||||
namespace
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue