fix typo in Game.cpp

This was SVN commit r17126.
This commit is contained in:
mimo
2015-10-11 11:12:27 +00:00
parent 93a14b595f
commit 9db4fb5ddb
+1 -1
View File
@@ -137,7 +137,7 @@ int CGame::LoadVisualReplayData()
u32 turn = 0;
u32 turnLength = 0;
*m_ReplayStream >> turn >> turnLength;
ENSURE(turn == currentTurn && "You tried to replay a commands.txt file of a rejoiend client. Please use the host's file.");
ENSURE(turn == currentTurn && "You tried to replay a commands.txt file of a rejoined client. Please use the host's file.");
replayTurnMgr->StoreReplayTurnLength(currentTurn, turnLength);
}
else if (type == "cmd")