mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-12 22:40:33 +00:00
Begin work on GenericSave
This commit is contained in:
parent
19488323ea
commit
4fee2cbdd9
3 changed files with 86 additions and 4 deletions
|
@ -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)
|
||||
{
|
||||
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue