From 30efa73a389fe72a52e2a2c07e408f37c0d5132d Mon Sep 17 00:00:00 2001 From: trompetin17 Date: Sat, 13 Jun 2015 02:42:21 +0000 Subject: [PATCH] FIX error: comparison between pointer and integer ('IReplayLogger *' and 'int') introduced in [16727] over osx This was SVN commit r16754. --- source/ps/Game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/ps/Game.cpp b/source/ps/Game.cpp index a311079d2f..c72f453844 100644 --- a/source/ps/Game.cpp +++ b/source/ps/Game.cpp @@ -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);