summaryrefslogtreecommitdiffstats
path: root/src/core/World.h
diff options
context:
space:
mode:
authorerorcun <erayorcunus@gmail.com>2020-04-15 18:22:28 +0200
committerGitHub <noreply@github.com>2020-04-15 18:22:28 +0200
commit647cfbfd4554e975825fa48e1a87ea286704fc21 (patch)
treee3d7a2d0164ab5c0a7bc19617d2bbfa25bc1e2a1 /src/core/World.h
parentfixed bug and weirdness in CHeli (diff)
parentMany fixes and cleanup (diff)
downloadre3-647cfbfd4554e975825fa48e1a87ea286704fc21.tar
re3-647cfbfd4554e975825fa48e1a87ea286704fc21.tar.gz
re3-647cfbfd4554e975825fa48e1a87ea286704fc21.tar.bz2
re3-647cfbfd4554e975825fa48e1a87ea286704fc21.tar.lz
re3-647cfbfd4554e975825fa48e1a87ea286704fc21.tar.xz
re3-647cfbfd4554e975825fa48e1a87ea286704fc21.tar.zst
re3-647cfbfd4554e975825fa48e1a87ea286704fc21.zip
Diffstat (limited to '')
-rw-r--r--src/core/World.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/World.h b/src/core/World.h
index 07e7889f..62fdc3b3 100644
--- a/src/core/World.h
+++ b/src/core/World.h
@@ -61,7 +61,7 @@ class CWorld
public:
static uint8 &PlayerInFocus;
- static CPlayerInfo (&Players)[NUMPLAYERS];
+ static CPlayerInfo Players[NUMPLAYERS];
static CEntity *&pIgnoreEntity;
static bool &bIncludeDeadPeds;
static bool &bNoMoreCollisionTorque;
@@ -144,7 +144,7 @@ public:
static void TriggerExplosion(const CVector &, float, float, CEntity*, bool);
};
-extern CColPoint *gaTempSphereColPoints;
+extern CColPoint gaTempSphereColPoints[MAX_COLLISION_POINTS];
class CPlayerPed;
class CVehicle;