checking in SMMAX2 theme and small fixes to themes and smpackage

This commit is contained in:
Chris Danford
2002-09-09 05:22:02 +00:00
parent 49efb3ebf5
commit ccc43c8502
24 changed files with 257 additions and 83 deletions
+6 -5
View File
@@ -178,11 +178,12 @@ void ScreenOptions::InitOptionsText()
title.LoadFromFont( THEME->GetPathTo("Fonts","option title") );
CString sText = optline.szTitle;
sText.Replace( " ", "\n" );
/* A bit of a hack: menus can put ^ to indicate a non-breaking space. This
* can go away if tihs gets smarter. (FOr example, there's no reason to break
* "how to play" into three lines. */
sText.Replace( "^", " " );
// Chris: To make a line break, use '\n'
// sText.Replace( " ", "\n" );
// /* A bit of a hack: menus can put ^ to indicate a non-breaking space. This
// * can go away if tihs gets smarter. (FOr example, there's no reason to break
// * "how to play" into three lines. */
// sText.Replace( "^", " " );
title.SetText( sText );
title.SetXY( LABELS_X, fY );