fix a crash with Cursors on ScreenSelectMaster.

This commit is contained in:
AJ Kelly
2011-04-10 03:35:56 -05:00
parent 6fa63cfb78
commit d1ddea19fc
+3
View File
@@ -754,10 +754,13 @@ float ScreenSelectMaster::DoMenuStart( PlayerNumber pn )
}
}
if( SHOW_CURSOR )
{
if(m_sprCursor[pn] != NULL)
{
m_sprCursor[pn]->PlayCommand( "Choose" );
fSecs = max( fSecs, m_sprCursor[pn]->GetTweenTimeLeft() );
}
}
return fSecs;
}