diff options
author | Wes Hampson <thehambone93@gmail.com> | 2020-03-05 10:44:42 +0100 |
---|---|---|
committer | Wes Hampson <thehambone93@gmail.com> | 2020-03-05 10:44:42 +0100 |
commit | 4fee2cbdd9948bd591d6e5bebd4bed827e12498a (patch) | |
tree | 3945023a001fa233b5341133cfc52d0dc9eb450f /src/core | |
parent | Merge pull request #342 from Nick007J/master (diff) | |
download | re3-4fee2cbdd9948bd591d6e5bebd4bed827e12498a.tar re3-4fee2cbdd9948bd591d6e5bebd4bed827e12498a.tar.gz re3-4fee2cbdd9948bd591d6e5bebd4bed827e12498a.tar.bz2 re3-4fee2cbdd9948bd591d6e5bebd4bed827e12498a.tar.lz re3-4fee2cbdd9948bd591d6e5bebd4bed827e12498a.tar.xz re3-4fee2cbdd9948bd591d6e5bebd4bed827e12498a.tar.zst re3-4fee2cbdd9948bd591d6e5bebd4bed827e12498a.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/Radar.cpp | 4 | ||||
-rw-r--r-- | src/core/Radar.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/core/Radar.cpp b/src/core/Radar.cpp index 6a1446da..3a706bad 100644 --- a/src/core/Radar.cpp +++ b/src/core/Radar.cpp @@ -946,9 +946,9 @@ void CRadar::RequestMapSection(int32 x, int32 y) #endif #if 1 -WRAPPER void CRadar::SaveAllRadarBlips(int32) { EAXJMP(0x4A6E30); } +WRAPPER void CRadar::SaveAllRadarBlips(uint8 *buf, uint32 *size) { EAXJMP(0x4A6E30); } #else -void CRadar::SaveAllRadarBlips(int32) +void CRadar::SaveAllRadarBlips(uint8 *buf, uint32 *size) { } diff --git a/src/core/Radar.h b/src/core/Radar.h index 650c6fb4..5b2174d7 100644 --- a/src/core/Radar.h +++ b/src/core/Radar.h @@ -130,7 +130,7 @@ public: static void RemoveRadarSections(); static void RemoveMapSection(int32 x, int32 y); static void RequestMapSection(int32 x, int32 y); - static void SaveAllRadarBlips(int32); + static void SaveAllRadarBlips(uint8 *buf, uint32 *size); static void SetBlipSprite(int32 i, int32 icon); static int32 SetCoordBlip(eBlipType type, CVector pos, int32, eBlipDisplay); static int32 SetEntityBlip(eBlipType type, int32, int32, eBlipDisplay); |