fix warnings
This commit is contained in:
@@ -246,7 +246,7 @@ ScreenNameEntryTraditional::ScreenNameEntryTraditional( CString sClassName ) : S
|
|||||||
if( PREFSMAN->m_bPercentageScoring )
|
if( PREFSMAN->m_bPercentageScoring )
|
||||||
m_textScore[p][i].SetText( ssprintf("%.2f%%", feat.fPercentDP*100) );
|
m_textScore[p][i].SetText( ssprintf("%.2f%%", feat.fPercentDP*100) );
|
||||||
else
|
else
|
||||||
m_textScore[p][i].SetText( ssprintf("%.0f", feat.iScore) );
|
m_textScore[p][i].SetText( ssprintf("%i", feat.iScore) );
|
||||||
SET_ON( m_textScore[p][i] );
|
SET_ON( m_textScore[p][i] );
|
||||||
this->AddChild( &m_textScore[p][i] );
|
this->AddChild( &m_textScore[p][i] );
|
||||||
|
|
||||||
|
|||||||
@@ -287,7 +287,7 @@ bool StageStats::FullCombo( PlayerNumber pn ) const
|
|||||||
{
|
{
|
||||||
if( ComboList[pn].size() != 1 )
|
if( ComboList[pn].size() != 1 )
|
||||||
{
|
{
|
||||||
LOG->Trace("FullCombo(%i): %lu != 1", pn, ComboList[pn].size());
|
LOG->Trace("FullCombo(%i): %i != 1", pn, (int)ComboList[pn].size());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user