diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2021-08-26 21:14:26 +0300 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2021-08-26 21:14:26 +0300 |
commit | 915888d2752cd78a6a64735d3856ac0c4d7153d2 (patch) | |
tree | 4b0a7b20ee6d50a9d6e3515858563b1cc31f26dc /src/core/Radar.cpp | |
parent | b7db2a12d499c1c1bd3667b00ab1553588c29885 (diff) |
fixed debug teleport
Diffstat (limited to 'src/core/Radar.cpp')
-rw-r--r-- | src/core/Radar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/Radar.cpp b/src/core/Radar.cpp index 7e3a75b3..4e15559d 100644 --- a/src/core/Radar.cpp +++ b/src/core/Radar.cpp @@ -1504,7 +1504,7 @@ CRadar::ToggleTargetMarker(float x, float y) ms_RadarTrace[nextBlip].m_bDim = 0; ms_RadarTrace[nextBlip].m_bInUse = 1; ms_RadarTrace[nextBlip].m_Radius = 1.0f; - CVector pos(x, y, 0.0f/*CWorld::FindGroundZForCoord(x,y)*/); + CVector pos(x, y, 0.0f); TargetMarkerPos = pos; ms_RadarTrace[nextBlip].m_vec2DPos = pos; ms_RadarTrace[nextBlip].m_vecPos = pos; |