fixes for missing/incorrectly named theme elements

This commit is contained in:
Chris Danford
2002-09-03 22:59:53 +00:00
parent f666a157d5
commit 1ad9214a53
4 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -565,8 +565,8 @@ TextOffsetX=0
TextOffsetY=0
TextHAlign=1 // 0,1,2 = left,center,right
TextVAlign=1 // 0,1,2 = top,middle,bottom
TextWidth=128
TextZoom=0.25
TextWidth=64
TextZoom=0.5
Uppercase=1
[OptionIconRow]
+1 -1
View File
@@ -40,7 +40,7 @@ OptionIcon::OptionIcon()
void OptionIcon::Load( PlayerNumber pn, CString sText, bool bHeader )
{
static CString sStopWords[] = { "OFF", "VISIBLE", "VIVID" };
static CString sStopWords[] = { "OFF", "VISIBLE", "VIVID", "STANDARD" };
const int iNumStopWords = sizeof(sStopWords)/sizeof(sStopWords[0]);
for( int i=0; i<iNumStopWords; i++ )
+2 -2
View File
@@ -190,7 +190,7 @@ ScreenEvaluation::ScreenEvaluation( bool bSummary )
m_BannerWithFrame[0].SetXY( BANNER_X, BANNER_Y );
this->AddChild( &m_BannerWithFrame[0] );
m_textStage.LoadFromFont( THEME->GetPathTo("Fonts","evalstage") );
m_textStage.LoadFromFont( THEME->GetPathTo("Fonts","evaluation stage") );
m_textStage.TurnShadowOff();
m_textStage.SetXY( STAGE_X, STAGE_Y );
m_textStage.SetZoom( 0.5f );
@@ -375,7 +375,7 @@ ScreenEvaluation::ScreenEvaluation( bool bSummary )
for( l=0; l<NUM_JUDGE_LINES; l++ )
{
m_textJudgeNumbers[l][p].LoadFromFont( THEME->GetPathTo("Fonts","score numbers") );
m_textJudgeNumbers[l][p].LoadFromTextureAndChars( THEME->GetPathTo("Graphics","evaluation score numbers 7x2"), "01234 :56789%." );
m_textJudgeNumbers[l][p].TurnShadowOff();
m_textJudgeNumbers[l][p].SetXY( JUDGE_X(p,l), JUDGE_Y(l) );
m_textJudgeNumbers[l][p].SetZoom( 0.7f );
+1 -1
View File
@@ -211,7 +211,7 @@ ScreenSelectMusic::ScreenSelectMusic()
this->AddChild( &m_MusicSortDisplay );
m_textHoldForOptions.LoadFromFont( THEME->GetPathTo("Fonts","select music stage") );
m_textHoldForOptions.LoadFromFont( THEME->GetPathTo("Fonts","select music hold") );
m_textHoldForOptions.SetXY( CENTER_X, CENTER_Y );
m_textHoldForOptions.SetText( "press START again for options" );
m_textHoldForOptions.SetZoom( 1 );