From 5a3356e94ec92d4451f81f9233d44e02ab1f0c88 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 19 Jan 2006 06:02:52 +0000 Subject: [PATCH] fix inactive underlines showing --- stepmania/src/ScreenOptions.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/ScreenOptions.cpp b/stepmania/src/ScreenOptions.cpp index ec14318516..d58e06a8b4 100644 --- a/stepmania/src/ScreenOptions.cpp +++ b/stepmania/src/ScreenOptions.cpp @@ -263,7 +263,8 @@ void ScreenOptions::BeginScreen() vpns.push_back( p ); this->ImportOptions( r, vpns ); - FOREACH_HumanPlayer( p ) + // HACK: Process disabled players, too, to hide inactive underlines. + FOREACH_PlayerNumber( p ) pRow->AfterImportOptions( p ); }