diff options
author | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-01-16 14:44:59 +0100 |
---|---|---|
committer | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-01-23 01:23:16 +0100 |
commit | f85b5e99edfb2e1b9a4563cacc96892195eee379 (patch) | |
tree | e8c670366d80e62776b0856466625b50af97c0c7 /src/core/Zones.h | |
parent | fix config.h (diff) | |
download | re3-f85b5e99edfb2e1b9a4563cacc96892195eee379.tar re3-f85b5e99edfb2e1b9a4563cacc96892195eee379.tar.gz re3-f85b5e99edfb2e1b9a4563cacc96892195eee379.tar.bz2 re3-f85b5e99edfb2e1b9a4563cacc96892195eee379.tar.lz re3-f85b5e99edfb2e1b9a4563cacc96892195eee379.tar.xz re3-f85b5e99edfb2e1b9a4563cacc96892195eee379.tar.zst re3-f85b5e99edfb2e1b9a4563cacc96892195eee379.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/Zones.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/Zones.h b/src/core/Zones.h index 5306d9f1..b987f009 100644 --- a/src/core/Zones.h +++ b/src/core/Zones.h @@ -103,8 +103,8 @@ public: static void SetPedDensity(uint16 zoneid, uint8 day, uint16 peddensity); static void SetPedGroup(uint16 zoneid, uint8 day, uint16 pedgroup); static int16 FindAudioZone(CVector *pos); - static CZone *GetPointerForZoneIndex(int32 i) { return i == -1 ? nil : &NavigationZoneArray[i]; } - static int32 GetIndexForZonePointer(CZone *zone) { return zone == nil ? -1 : zone - NavigationZoneArray; } + static CZone *GetPointerForZoneIndex(ssize_t i) { return i == -1 ? nil : &NavigationZoneArray[i]; } + static ssize_t GetIndexForZonePointer(CZone *zone) { return zone == nil ? -1 : zone - NavigationZoneArray; } static void AddZoneToAudioZoneArray(CZone *zone); static void InitialiseAudioZoneArray(void); static void SaveAllZones(uint8 *buffer, uint32 *length); |