mirror of
https://github.com/halpz/re3.git
synced 2025-05-07 11:43:38 +03:00
actual struct name
This commit is contained in:
parent
e9288dd005
commit
2f05c64470
2 changed files with 5 additions and 5 deletions
|
@ -1340,7 +1340,7 @@ void CMissionCleanup::Init()
|
|||
}
|
||||
}
|
||||
|
||||
CMissionCleanupEntity* CMissionCleanup::FindFree()
|
||||
cleanup_entity_struct* CMissionCleanup::FindFree()
|
||||
{
|
||||
for (int i = 0; i < MAX_CLEANUP; i++){
|
||||
if (m_sEntities[i].type == CLEANUP_UNUSED)
|
||||
|
@ -1352,7 +1352,7 @@ CMissionCleanupEntity* CMissionCleanup::FindFree()
|
|||
|
||||
void CMissionCleanup::AddEntityToList(int32 id, uint8 type)
|
||||
{
|
||||
CMissionCleanupEntity* pNew = FindFree();
|
||||
cleanup_entity_struct* pNew = FindFree();
|
||||
if (!pNew)
|
||||
return;
|
||||
pNew->id = id;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue