summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2020-02-24 19:17:15 +0100
committerNikolay Korolev <nickvnuk@gmail.com>2020-02-24 19:17:15 +0100
commit56c83dfaaebffc1eabec01671c2da892661059af (patch)
treee23ff527d9280b206aa3774576c47341539e1c26 /src/core
parentMerge branch 'master' into script_dev (diff)
downloadre3-56c83dfaaebffc1eabec01671c2da892661059af.tar
re3-56c83dfaaebffc1eabec01671c2da892661059af.tar.gz
re3-56c83dfaaebffc1eabec01671c2da892661059af.tar.bz2
re3-56c83dfaaebffc1eabec01671c2da892661059af.tar.lz
re3-56c83dfaaebffc1eabec01671c2da892661059af.tar.xz
re3-56c83dfaaebffc1eabec01671c2da892661059af.tar.zst
re3-56c83dfaaebffc1eabec01671c2da892661059af.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/main.cpp b/src/core/main.cpp
index 2f266a9e..90afff72 100644
--- a/src/core/main.cpp
+++ b/src/core/main.cpp
@@ -48,6 +48,7 @@
#include "RpAnimBlend.h"
#include "Frontend.h"
#include "AnimViewer.h"
+#include "Script.h"
#define DEFAULT_VIEWWINDOW (Tan(DEGTORAD(CDraw::GetFOV() * 0.5f)))
@@ -356,7 +357,7 @@ RenderScene(void)
void
RenderDebugShit(void)
{
- // CTheScripts::RenderTheScriptDebugLines()
+ CTheScripts::RenderTheScriptDebugLines();
if(gbShowCollisionLines)
CRenderer::RenderCollisionLines();
}