use a font with baked shadow on options screens

This commit is contained in:
Chris Danford
2003-06-15 17:45:26 +00:00
parent 08d60ad58b
commit 170152a04a
3 changed files with 3 additions and 4 deletions
@@ -1 +1 @@
Common normal
ScreenOptions item
@@ -1 +0,0 @@
Common normal
+2 -2
View File
@@ -134,7 +134,7 @@ void ScreenOptions::Init( InputMode im, OptionRow OptionRow[], int iNumOptionLin
m_textExplanation.LoadFromFont( THEME->GetPathToF("ScreenOptions explanation") );
m_textExplanation.SetXY( EXPLANATION_X, EXPLANATION_Y );
m_textExplanation.SetZoom( EXPLANATION_ZOOM );
m_textExplanation.SetShadowLength( 2 );
m_textExplanation.SetShadowLength( 0 );
m_framePage.AddChild( &m_textExplanation );
@@ -252,7 +252,7 @@ void ScreenOptions::InitOptionsText()
option.LoadFromFont( THEME->GetPathToF("ScreenOptions item") );
option.SetText( "EXIT" );
option.SetZoom( ITEMS_ZOOM );
option.SetShadowLength( 2 );
option.SetShadowLength( 0 );
float fY = ITEMS_START_Y + fLineGap*i;
option.SetXY( CENTER_X, fY );
}