From 1cb3514b051ed2ff04d72d3ac60822f8a0e742d0 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 4 Jun 2017 12:39:39 +0200 Subject: [PATCH] - 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. --- src/r_data/r_vanillatrans.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/r_data/r_vanillatrans.cpp b/src/r_data/r_vanillatrans.cpp index 73f785e4b..6bf897951 100644 --- a/src/r_data/r_vanillatrans.cpp +++ b/src/r_data/r_vanillatrans.cpp @@ -33,7 +33,7 @@ #endif bool r_UseVanillaTransparency; -CVAR (Int, r_vanillatrans, 2, CVAR_ARCHIVE) +CVAR (Int, r_vanillatrans, 0, CVAR_ARCHIVE) namespace {