Maelstrom: You can't get on the high score list if you're in kid mode.

https://github.com/libsdl-org/Maelstrom/commit/e6a7d07a353d230c85d4664419ad82a5133884cb

From e6a7d07a353d230c85d4664419ad82a5133884cb Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Thu, 19 Jul 2012 15:47:19 -0700
Subject: [PATCH] You can't get on the high score list if you're in kid mode.

---
 game/gameover.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/game/gameover.cpp b/game/gameover.cpp
index e5238efb..4bd931d3 100644
--- a/game/gameover.cpp
+++ b/game/gameover.cpp
@@ -121,7 +121,8 @@ void GameOverPanelDelegate::OnShow()
 
 	/* -- See if they got a high score */
 	m_handleLabel = NULL;
-	if (gReplay.IsRecording() && !gGameInfo.IsMultiplayer() &&
+	if (gReplay.IsRecording() &&
+	    !gGameInfo.IsMultiplayer() && !gGameInfo.IsKidMode() &&
 	    (gGameInfo.wave == 1) && (gGameInfo.lives == 3) &&
 	    TheShip->GetScore() > 0) {
 		for ( i = 0; i<NUM_SCORES; ++i ) {