From 92fff09378df6160ac80039c651fd50ac1516228 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Thu, 19 Apr 2007 10:17:20 +0000 Subject: [PATCH] Fix compile. Judging by the name of the function, it is possible this should be checking all memory cards, not just the ones for pn. I am not sure so this is only temporary until Glenn reappears. --- stepmania/src/ScreenSystemLayer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenSystemLayer.cpp b/stepmania/src/ScreenSystemLayer.cpp index f63de24c6b..6ea60f0510 100644 --- a/stepmania/src/ScreenSystemLayer.cpp +++ b/stepmania/src/ScreenSystemLayer.cpp @@ -38,7 +38,7 @@ namespace bool bShowCreditsMessage; if( SCREENMAN && SCREENMAN->GetTopScreen() && SCREENMAN->GetTopScreen()->GetScreenType() == system_menu ) bShowCreditsMessage = true; - else if( MEMCARDMAN->GetCardsLocked() ) + else if( MEMCARDMAN->GetCardLocked(pn) ) bShowCreditsMessage = !GAMESTATE->IsPlayerEnabled( pn ); else bShowCreditsMessage = !GAMESTATE->m_bSideIsJoined[pn];