1
0
forked from 0ad/0ad

Fix compile error for gcc 4.6, refs #3168.

This was SVN commit r17745.
This commit is contained in:
elexis 2016-02-08 22:44:23 +00:00
parent ca19d42a68
commit 4ac89001f4
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@
#include "ps/Game.h"
CSimContext::CSimContext() :
m_ComponentManager(NULL), m_UnitManager(NULL), m_Terrain(NULL)
m_ComponentManager(NULL), m_UnitManager(NULL), m_Terrain(NULL), currentDisplayedPlayer(0)
{
}

View File

@ -62,7 +62,7 @@ private:
CEntityHandle m_SystemEntity;
int currentDisplayedPlayer = 0;
int currentDisplayedPlayer;
friend class CSimulation2Impl;
};