diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2020-02-24 19:17:15 +0100 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2020-02-24 19:17:15 +0100 |
commit | 56c83dfaaebffc1eabec01671c2da892661059af (patch) | |
tree | e23ff527d9280b206aa3774576c47341539e1c26 /src/core | |
parent | Merge branch 'master' into script_dev (diff) | |
download | re3-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.cpp | 3 |
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(); } |