summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2021-01-13 14:01:49 +0100
committerNikolay Korolev <nickvnuk@gmail.com>2021-01-13 14:01:49 +0100
commit3e198086e31c3f1b0269b5c53c0811b2fc575497 (patch)
tree4f9b0730f31472adde559940e25d42e104a9d98d /src/core
parentsync with lcs-dev (diff)
downloadre3-3e198086e31c3f1b0269b5c53c0811b2fc575497.tar
re3-3e198086e31c3f1b0269b5c53c0811b2fc575497.tar.gz
re3-3e198086e31c3f1b0269b5c53c0811b2fc575497.tar.bz2
re3-3e198086e31c3f1b0269b5c53c0811b2fc575497.tar.lz
re3-3e198086e31c3f1b0269b5c53c0811b2fc575497.tar.xz
re3-3e198086e31c3f1b0269b5c53c0811b2fc575497.tar.zst
re3-3e198086e31c3f1b0269b5c53c0811b2fc575497.zip
Diffstat (limited to '')
-rw-r--r--src/core/Radar.cpp2
-rw-r--r--src/core/main.cpp2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/core/Radar.cpp b/src/core/Radar.cpp
index d9802acc..b7787627 100644
--- a/src/core/Radar.cpp
+++ b/src/core/Radar.cpp
@@ -1129,6 +1129,7 @@ void CRadar::SetRadarMarkerState(int32 counter, bool flag)
}
void CRadar::ShowRadarMarker(CVector pos, uint32 color, float radius) {
+ /*
float f1 = radius * 1.4f;
float f2 = radius * 0.5f;
CVector p1, p2;
@@ -1148,6 +1149,7 @@ void CRadar::ShowRadarMarker(CVector pos, uint32 color, float radius) {
p1 = pos - TheCamera.GetRight()*f1;
p2 = pos - TheCamera.GetRight()*f2;
CTheScripts::ScriptDebugLine3D(p1.x, p1.y, p1.z, p2.x, p2.y, p2.z, color, color);
+ */
}
void CRadar::ShowRadarTrace(float x, float y, uint32 size, uint8 red, uint8 green, uint8 blue, uint8 alpha)
diff --git a/src/core/main.cpp b/src/core/main.cpp
index c516cd84..4fe2ee01 100644
--- a/src/core/main.cpp
+++ b/src/core/main.cpp
@@ -1275,7 +1275,7 @@ RenderScene(void)
void
RenderDebugShit(void)
{
- CTheScripts::RenderTheScriptDebugLines();
+ //CTheScripts::RenderTheScriptDebugLines();
#ifndef FINAL
if(gbShowCollisionLines)
CRenderer::RenderCollisionLines();