summaryrefslogtreecommitdiffstats
path: root/src/render/Renderer.h
diff options
context:
space:
mode:
authorerorcun <erayorcunus@gmail.com>2019-11-03 00:15:21 +0100
committerGitHub <noreply@github.com>2019-11-03 00:15:21 +0100
commit11d071a0322d3755148848b7a321b2f7c43fc768 (patch)
tree0ff9dcaf4a89417ece971dc51d9cb4dcc11d67f0 /src/render/Renderer.h
parentMerge pull request #264 from erorcun/erorcun (diff)
parentRenderer fixes (diff)
downloadre3-11d071a0322d3755148848b7a321b2f7c43fc768.tar
re3-11d071a0322d3755148848b7a321b2f7c43fc768.tar.gz
re3-11d071a0322d3755148848b7a321b2f7c43fc768.tar.bz2
re3-11d071a0322d3755148848b7a321b2f7c43fc768.tar.lz
re3-11d071a0322d3755148848b7a321b2f7c43fc768.tar.xz
re3-11d071a0322d3755148848b7a321b2f7c43fc768.tar.zst
re3-11d071a0322d3755148848b7a321b2f7c43fc768.zip
Diffstat (limited to 'src/render/Renderer.h')
-rw-r--r--src/render/Renderer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render/Renderer.h b/src/render/Renderer.h
index 817cdaae..ea49ed4e 100644
--- a/src/render/Renderer.h
+++ b/src/render/Renderer.h
@@ -19,9 +19,9 @@ class CPtrList;
class CRenderer
{
static int32 &ms_nNoOfVisibleEntities;
- static CEntity **ms_aVisibleEntityPtrs; // [2000];
+ static CEntity *(&ms_aVisibleEntityPtrs)[NUMVISIBLEENTITIES];
static int32 &ms_nNoOfInVisibleEntities;
- static CEntity **ms_aInVisibleEntityPtrs; // [150];
+ static CEntity *(&ms_aInVisibleEntityPtrs)[NUMINVISIBLEENTITIES];
static CVector &ms_vecCameraPosition;
static CVehicle *&m_pFirstPersonVehicle;