From c136cf3a9e4100da22b13845932c11634c2bcae9 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 24 Aug 2005 20:43:05 +0000 Subject: [PATCH] fix "warning C4213: nonstandard extension used : cast on l-value" --- stepmania/src/ScreenGameplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenGameplay.cpp b/stepmania/src/ScreenGameplay.cpp index 4085af2f1b..c290cc3d89 100644 --- a/stepmania/src/ScreenGameplay.cpp +++ b/stepmania/src/ScreenGameplay.cpp @@ -579,7 +579,7 @@ void ScreenGameplay::Init() //the following is only used in SMLAN/SMOnline if( NSMAN->useSMserver && ( !GAMESTATE->PlayerUsingBothSides() ) ) { - m_ShowScoreboard = PREFSMAN->m_bEnableScoreboard; + m_ShowScoreboard = PREFSMAN->m_bEnableScoreboard.Get(); PlayerNumber pn = GAMESTATE->GetFirstDisabledPlayer(); if( pn != PLAYER_INVALID ) {