From 6ce9228150ee3d95d05cde9f99535ba5ddf45fb6 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Thu, 14 Apr 2011 04:24:07 +0000 Subject: [PATCH] - Fix brokenness of preceding commit. SVN r3179 (trunk) --- src/r_3dfloors.h | 1 + src/r_bsp.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/src/r_3dfloors.h b/src/r_3dfloors.h index f04325349..1a16e36a5 100644 --- a/src/r_3dfloors.h +++ b/src/r_3dfloors.h @@ -44,6 +44,7 @@ enum FAKE3D_CLIPBOTTOM = 1, // clip bottom FAKE3D_CLIPTOP = 2, // clip top FAKE3D_REFRESHCLIP = 4, // refresh clip info + FAKE3D_DOWN2UP = 8, // rendering from down to up (floors) }; extern int fake3D; diff --git a/src/r_bsp.cpp b/src/r_bsp.cpp index 49c48804e..726986fb6 100644 --- a/src/r_bsp.cpp +++ b/src/r_bsp.cpp @@ -1455,6 +1455,7 @@ void R_Subsector (subsector_t *sub) void R_RenderBSPNode (void *node) { if (numnodes == 0) + { R_Subsector (subsectors); return; }