mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 16:48:59 +00:00
disable cullzone writer
This commit is contained in:
parent
82becdc955
commit
669374ec1a
2 changed files with 2 additions and 1 deletions
|
@ -89,6 +89,7 @@ CCullZones::ResolveVisibilities(void)
|
||||||
CFileMgr::Read(fd, (char*)aPointersToBigBuildingsForTreadables, sizeof(aPointersToBigBuildingsForTreadables));
|
CFileMgr::Read(fd, (char*)aPointersToBigBuildingsForTreadables, sizeof(aPointersToBigBuildingsForTreadables));
|
||||||
CFileMgr::CloseFile(fd);
|
CFileMgr::CloseFile(fd);
|
||||||
}else{
|
}else{
|
||||||
|
#if 0
|
||||||
// TODO: implement code from mobile to generate data here
|
// TODO: implement code from mobile to generate data here
|
||||||
EntityIndicesUsed = 0;
|
EntityIndicesUsed = 0;
|
||||||
BuildListForBigBuildings();
|
BuildListForBigBuildings();
|
||||||
|
@ -113,6 +114,7 @@ CCullZones::ResolveVisibilities(void)
|
||||||
CFileMgr::Write(fd, (char*)&aPointersToBigBuildingsForTreadables, sizeof(aPointersToBigBuildingsForTreadables));
|
CFileMgr::Write(fd, (char*)&aPointersToBigBuildingsForTreadables, sizeof(aPointersToBigBuildingsForTreadables));
|
||||||
CFileMgr::CloseFile(fd);
|
CFileMgr::CloseFile(fd);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,6 @@ public:
|
||||||
float minz;
|
float minz;
|
||||||
float maxz;
|
float maxz;
|
||||||
|
|
||||||
// TODO: figure these out:
|
|
||||||
int32 m_indexStart;
|
int32 m_indexStart;
|
||||||
int16 m_groupIndexCount[3];
|
int16 m_groupIndexCount[3];
|
||||||
int16 m_numBuildings;
|
int16 m_numBuildings;
|
||||||
|
|
Loading…
Reference in a new issue