mirror of
https://github.com/jmarshall23/DoomRTX.git
synced 2026-08-16 08:10:32 +02:00
entity_t and brush_t now converted to idEditorEntity and idEditorBrush
This commit is contained in:
@@ -81,7 +81,7 @@ BOOL CMapInfo::OnInitDialog()
|
||||
m_nTotalBrushes = 0;
|
||||
m_nTotalEntities = 0;
|
||||
m_nNet = 0;
|
||||
for (brush_t* pBrush=active_brushes.next ; pBrush != &active_brushes ; pBrush=pBrush->next)
|
||||
for (idEditorBrush* pBrush=active_brushes.next ; pBrush != &active_brushes ; pBrush=pBrush->next)
|
||||
{
|
||||
m_nTotalBrushes++;
|
||||
if (pBrush->owner == world_entity)
|
||||
@@ -92,7 +92,7 @@ BOOL CMapInfo::OnInitDialog()
|
||||
CMapStringToPtr mapEntity;
|
||||
|
||||
int nValue = 0;
|
||||
for (entity_t* pEntity=entities.next ; pEntity != &entities ; pEntity=pEntity->next)
|
||||
for (idEditorEntity* pEntity=entities.next ; pEntity != &entities ; pEntity=pEntity->next)
|
||||
{
|
||||
m_nTotalEntities++;
|
||||
nValue = 0;
|
||||
|
||||
Reference in New Issue
Block a user