1
0
forked from 0ad/0ad

FIX error: comparison between pointer and integer ('IReplayLogger *' and 'int') introduced in [16727] over osx

This was SVN commit r16754.
This commit is contained in:
trompetin17 2015-06-13 02:42:21 +00:00
parent 534b8076e4
commit 30efa73a38

View File

@ -351,7 +351,7 @@ void CGame::SetPlayerID(player_id_t playerID)
void CGame::StartGame(JS::MutableHandleValue attribs, const std::string& savedState)
{
if (m_ReplayLogger != false)
if (m_ReplayLogger)
m_ReplayLogger->StartGame(attribs);
RegisterInit(attribs, savedState);