From 84cb49b074962fd114c1dfd5268ece46ed5b0f4f Mon Sep 17 00:00:00 2001 From: Braden Obrzut Date: Wed, 16 Jul 2014 19:19:20 -0400 Subject: [PATCH] - Fixed: Legacy render style array was in the wrong order. --- src/p_acs.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/p_acs.cpp b/src/p_acs.cpp index feecbb0aa9..87e65cac39 100644 --- a/src/p_acs.cpp +++ b/src/p_acs.cpp @@ -3542,14 +3542,14 @@ static const int LegacyRenderStyleIndices[] = 3, // STYLE_SoulTrans, 4, // STYLE_OptFuzzy, 5, // STYLE_Stencil, - 6, // STYLE_AddStencil - 7, // STYLE_AddShaded 64, // STYLE_Translucent 65, // STYLE_Add, 66, // STYLE_Shaded, 67, // STYLE_TranslucentStencil, 68, // STYLE_Shadow, 69, // STYLE_Subtract, + 6, // STYLE_AddStencil + 7, // STYLE_AddShaded -1 };