Maelstrom: Fixed it so you can't control the ship while in replay mode.

https://github.com/libsdl-org/Maelstrom/commit/388a052f6b11e25922eaf7752d88290e1f4dd96f

From 388a052f6b11e25922eaf7752d88290e1f4dd96f Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Sun, 20 Nov 2011 03:11:58 -0500
Subject: [PATCH] Fixed it so you can't control the ship while in replay mode.

---
 game/replay.cpp | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/game/replay.cpp b/game/replay.cpp
index 855de2fd..5e31a45a 100644
--- a/game/replay.cpp
+++ b/game/replay.cpp
@@ -57,9 +57,8 @@ Replay::HandleNewGame()
 		m_game.CopyFrom(gGameInfo);
 		m_game.PrepareForReplay();
 	} else if (m_mode == REPLAY_PLAYBACK) {
-		m_game.PrepareForReplay();
-		gGameInfo.localID = m_game.localID;
 		gGameInfo.CopyFrom(m_game);
+		gGameInfo.PrepareForReplay();
 	}
 	m_data.Seek(0);
 }