mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2026-04-21 03:27:22 +02:00
Include default value for default constructor.
This commit is contained in:
+2
-2
@@ -422,7 +422,7 @@ protected:
|
|||||||
|
|
||||||
// ----------------------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------------------
|
||||||
AreaList mAreas{}; // Areas the player is currently in.
|
AreaList mAreas{}; // Areas the player is currently in.
|
||||||
Float64 mDistance; // Distance traveled while tracking was enabled.
|
Float64 mDistance{0}; // Distance traveled while tracking was enabled.
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------------------
|
||||||
SQInteger mTrackPosition{0}; // The number of times to track position changes.
|
SQInteger mTrackPosition{0}; // The number of times to track position changes.
|
||||||
@@ -583,7 +583,7 @@ protected:
|
|||||||
|
|
||||||
// ----------------------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------------------
|
||||||
AreaList mAreas{}; // Areas the vehicle is currently in.
|
AreaList mAreas{}; // Areas the vehicle is currently in.
|
||||||
Float64 mDistance; // Distance traveled while tracking was enabled.
|
Float64 mDistance{0}; // Distance traveled while tracking was enabled.
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------------------
|
||||||
SQInteger mTrackPosition{0}; // The number of times to track position changes.
|
SQInteger mTrackPosition{0}; // The number of times to track position changes.
|
||||||
|
|||||||
Reference in New Issue
Block a user