From 9da774ab1d5421b517eeb74655c2716636368081 Mon Sep 17 00:00:00 2001 From: poco0317 Date: Sat, 18 Aug 2018 21:53:12 -0500 Subject: [PATCH] Fix Player 2 Start Button Crash Pressing p2 start in music select crashes the game for "no reason." Here's the reason. It's fixed (disabled). --- src/ScreenSelectMusic.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/ScreenSelectMusic.cpp b/src/ScreenSelectMusic.cpp index 08200a5644..6eeb7f82b9 100644 --- a/src/ScreenSelectMusic.cpp +++ b/src/ScreenSelectMusic.cpp @@ -585,14 +585,15 @@ bool ScreenSelectMusic::Input(const InputEventPlus &input) if (!input.GameI.IsValid()) return false; // don't care - // Handle late joining - // If the other player is allowed to join on the extra stage, then the - // summary screen will crash on invalid stage stats. -Kyz + /**** This handles letting player 2 into the game after that old screen that we haven't seen in 25 years + * you know, the one that lets you pick how many people you are playing with. + * Anyways, let's disable this block because all it does is crash the game now. if (m_SelectionState != SelectionState_Finalized && input.MenuI == GAME_BUTTON_START && input.type == IET_FIRST_PRESS && GAMESTATE->JoinInput(input.pn)) { return true; // don't handle this press again below } + */ if (!GAMESTATE->IsHumanPlayer(input.pn)) return false;