game: more tf2base in includes!

This commit is contained in:
SanyaSho 2022-08-10 22:14:32 +03:00
parent 68576d77e4
commit b92648026f

View File

@ -189,7 +189,11 @@ void CControlPointIcon::ApplySchemeSettings( IScheme *pScheme )
if ( !m_pCPTimerLabel ) if ( !m_pCPTimerLabel )
{ {
#if defined( TF_MOD_CLIENT )
m_pCPTimerLabel = new CTFLabel( this, "CPTimerLabel", L"" );
#else
m_pCPTimerLabel = new CExLabel( this, "CPTimerLabel", L"" ); m_pCPTimerLabel = new CExLabel( this, "CPTimerLabel", L"" );
#endif
m_pCPTimerLabel->SetZPos( 0 ); m_pCPTimerLabel->SetZPos( 0 );
} }
@ -1794,7 +1798,11 @@ void CControlPointCountdown::ApplySchemeSettings( IScheme *pScheme )
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
void CControlPointCountdown::PerformLayout() void CControlPointCountdown::PerformLayout()
{ {
#if defined( TF_MOD_CLIENT )
CTFLabel *pLabel = dynamic_cast<CTFLabel *>( FindChildByName( "CapCountdownLabel" ) );
#else
CExLabel *pLabel = dynamic_cast<CExLabel *>( FindChildByName( "CapCountdownLabel" ) ); CExLabel *pLabel = dynamic_cast<CExLabel *>( FindChildByName( "CapCountdownLabel" ) );
#endif
if ( pLabel ) if ( pLabel )
{ {
pLabel->SetBounds( 0, 0, GetWide(), GetTall() ); pLabel->SetBounds( 0, 0, GetWide(), GetTall() );