summaryrefslogtreecommitdiffstats
path: root/src/control
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2020-09-26 11:30:14 +0200
committerNikolay Korolev <nickvnuk@gmail.com>2020-09-26 11:30:14 +0200
commit375c7df00f4b95ca52906cf337fad0eefd18d0da (patch)
tree817249f1c2a2d1b0fe17c5e63cd9ef2aa9d0e483 /src/control
parentupdate lib (diff)
parentFixes from miami (diff)
downloadre3-375c7df00f4b95ca52906cf337fad0eefd18d0da.tar
re3-375c7df00f4b95ca52906cf337fad0eefd18d0da.tar.gz
re3-375c7df00f4b95ca52906cf337fad0eefd18d0da.tar.bz2
re3-375c7df00f4b95ca52906cf337fad0eefd18d0da.tar.lz
re3-375c7df00f4b95ca52906cf337fad0eefd18d0da.tar.xz
re3-375c7df00f4b95ca52906cf337fad0eefd18d0da.tar.zst
re3-375c7df00f4b95ca52906cf337fad0eefd18d0da.zip
Diffstat (limited to 'src/control')
-rw-r--r--src/control/PathFind.cpp2
-rw-r--r--src/control/Script.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/control/PathFind.cpp b/src/control/PathFind.cpp
index 46895678..fb60250c 100644
--- a/src/control/PathFind.cpp
+++ b/src/control/PathFind.cpp
@@ -1682,7 +1682,7 @@ CPathFind::Load(uint8 *buf, uint32 size)
void
CPathFind::DisplayPathData(void)
{
- // Not the function from mobm_carPathLinksile but my own!
+ // Not the function from mobile but my own!
int i, j, k;
// Draw 50 units around camera
diff --git a/src/control/Script.cpp b/src/control/Script.cpp
index e9808643..793b61c3 100644
--- a/src/control/Script.cpp
+++ b/src/control/Script.cpp
@@ -4994,7 +4994,7 @@ int8 CRunningScript::ProcessCommands300To399(int32 command)
pos.z = CWorld::FindGroundZForCoord(pos.x, pos.y);
// Useless call
CRadar::GetActualBlipArrayIndex(CollectNextParameterWithoutIncreasingPC(m_nIp));
- int handle = CRadar::SetCoordBlip(BLIP_COORD, pos, 2, BLIP_DISPLAY_BOTH);
+ int handle = CRadar::SetCoordBlip(BLIP_CONTACT_POINT, pos, 2, BLIP_DISPLAY_BOTH);
CRadar::ChangeBlipScale(handle, 3);
ScriptParams[0] = handle;
StoreParameters(&m_nIp, 1);
@@ -9319,7 +9319,7 @@ int8 CRunningScript::ProcessCommands900To999(int32 command)
CVector pos = *(CVector*)&ScriptParams[0];
if (pos.z <= MAP_Z_LOW_LIMIT)
pos.z = CWorld::FindGroundZForCoord(pos.x, pos.y);
- C3dMarkers::PlaceMarkerSet((uintptr)this + m_nIp, 4, pos, *(float*)&ScriptParams[3],
+ C3dMarkers::PlaceMarkerSet((uintptr)this + m_nIp, MARKERTYPE_CYLINDER, pos, *(float*)&ScriptParams[3],
SPHERE_MARKER_R, SPHERE_MARKER_G, SPHERE_MARKER_B, SPHERE_MARKER_A,
SPHERE_MARKER_PULSE_PERIOD, SPHERE_MARKER_PULSE_FRACTION, 0);
return 0;
@@ -11254,7 +11254,7 @@ void CTheScripts::DrawScriptSpheres()
{
for (int i = 0; i < MAX_NUM_SCRIPT_SPHERES; i++) {
if (ScriptSphereArray[i].m_bInUse)
- C3dMarkers::PlaceMarkerSet(ScriptSphereArray[i].m_Id, 4, ScriptSphereArray[i].m_vecCenter, ScriptSphereArray[i].m_fRadius,
+ C3dMarkers::PlaceMarkerSet(ScriptSphereArray[i].m_Id, MARKERTYPE_CYLINDER, ScriptSphereArray[i].m_vecCenter, ScriptSphereArray[i].m_fRadius,
SPHERE_MARKER_R, SPHERE_MARKER_G, SPHERE_MARKER_B, SPHERE_MARKER_A, SPHERE_MARKER_PULSE_PERIOD, SPHERE_MARKER_PULSE_FRACTION, 0);
}
}