From 9db4fb5ddbe3a09307ae98677c862f9f989e9950 Mon Sep 17 00:00:00 2001 From: mimo Date: Sun, 11 Oct 2015 11:12:27 +0000 Subject: [PATCH] fix typo in Game.cpp This was SVN commit r17126. --- 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 c4d6727215..cc2be57cde 100644 --- a/source/ps/Game.cpp +++ b/source/ps/Game.cpp @@ -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")