summaryrefslogtreecommitdiffstats
path: root/src/Tracer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Tracer.h')
-rw-r--r--src/Tracer.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Tracer.h b/src/Tracer.h
index 821131539..ec23b340e 100644
--- a/src/Tracer.h
+++ b/src/Tracer.h
@@ -3,6 +3,8 @@
#include "Vector3.h"
+#include <array>
+
@@ -65,7 +67,7 @@ private:
int SigNum( float a_Num);
cWorld* m_World;
- Vector3f m_NormalTable[6];
+ static const std::array<const Vector3f, 6> m_NormalTable;
Vector3f dir;
Vector3f tDelta;