summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authormajestic <majesticcoding@gmail.com>2020-07-05 22:45:09 +0200
committermajestic <majesticcoding@gmail.com>2020-07-20 18:49:39 +0200
commit1ff27e3363c4deb027619375ac289a6148cda529 (patch)
tree3b39a423fff3d683dea4b16fc36308a46118286f /src/core
parentfixes from master, menu helper text (diff)
downloadre3-1ff27e3363c4deb027619375ac289a6148cda529.tar
re3-1ff27e3363c4deb027619375ac289a6148cda529.tar.gz
re3-1ff27e3363c4deb027619375ac289a6148cda529.tar.bz2
re3-1ff27e3363c4deb027619375ac289a6148cda529.tar.lz
re3-1ff27e3363c4deb027619375ac289a6148cda529.tar.xz
re3-1ff27e3363c4deb027619375ac289a6148cda529.tar.zst
re3-1ff27e3363c4deb027619375ac289a6148cda529.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/config.h1
-rw-r--r--src/core/main.cpp2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/core/config.h b/src/core/config.h
index 798e6bb2..b5a6b343 100644
--- a/src/core/config.h
+++ b/src/core/config.h
@@ -67,6 +67,7 @@ enum Config {
NUMATTRIBZONES = 704,
NUMOCCLUSIONVOLUMES = 350,
+ NUMACTIVEOCCLUDERS = 48,
PATHNODESIZE = 4500,
diff --git a/src/core/main.cpp b/src/core/main.cpp
index 6e6092f3..8b4ad471 100644
--- a/src/core/main.cpp
+++ b/src/core/main.cpp
@@ -61,6 +61,7 @@
#include "MemoryCard.h"
#include "SceneEdit.h"
#include "debugmenu.h"
+#include "Occlusion.h"
GlobalScene Scene;
@@ -930,6 +931,7 @@ Render2dStuff(void)
CGarages::PrintMessages();
CPad::PrintErrorMessage();
CFont::DrawFonts();
+ COcclusion::Render();
#ifdef DEBUGMENU
DebugMenuRender();