From 64b5d82efd8156d00cef501295bc8409d806efd9 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Wed, 31 Dec 2003 22:03:47 +0000 Subject: [PATCH] add fonts: ScreenGameplay player options, ScreenGameplay song options --- .../Themes/default/Fonts/ScreenGameplay player options.redir | 1 + .../Themes/default/Fonts/ScreenGameplay song options.redir | 1 + stepmania/src/ScreenGameplay.cpp | 4 ++-- 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 stepmania/Themes/default/Fonts/ScreenGameplay player options.redir create mode 100644 stepmania/Themes/default/Fonts/ScreenGameplay song options.redir diff --git a/stepmania/Themes/default/Fonts/ScreenGameplay player options.redir b/stepmania/Themes/default/Fonts/ScreenGameplay player options.redir new file mode 100644 index 0000000000..ca24092074 --- /dev/null +++ b/stepmania/Themes/default/Fonts/ScreenGameplay player options.redir @@ -0,0 +1 @@ +Common normal diff --git a/stepmania/Themes/default/Fonts/ScreenGameplay song options.redir b/stepmania/Themes/default/Fonts/ScreenGameplay song options.redir new file mode 100644 index 0000000000..ca24092074 --- /dev/null +++ b/stepmania/Themes/default/Fonts/ScreenGameplay song options.redir @@ -0,0 +1 @@ +Common normal diff --git a/stepmania/src/ScreenGameplay.cpp b/stepmania/src/ScreenGameplay.cpp index 0f251e5803..ff680dede3 100644 --- a/stepmania/src/ScreenGameplay.cpp +++ b/stepmania/src/ScreenGameplay.cpp @@ -541,14 +541,14 @@ ScreenGameplay::ScreenGameplay( CString sName, bool bDemonstration ) : Screen("S if( !GAMESTATE->IsPlayerEnabled(p) ) continue; - m_textPlayerOptions[p].LoadFromFont( THEME->GetPathToF("Common normal") ); + m_textPlayerOptions[p].LoadFromFont( THEME->GetPathToF("ScreenGameplay player options") ); m_textPlayerOptions[p].EnableShadow( false ); m_textPlayerOptions[p].SetName( ssprintf("PlayerOptionsP%d%s",p+1,bExtra?"Extra":"") ); SET_XY( m_textPlayerOptions[p] ); this->AddChild( &m_textPlayerOptions[p] ); } - m_textSongOptions.LoadFromFont( THEME->GetPathToF("Common normal") ); + m_textSongOptions.LoadFromFont( THEME->GetPathToF("ScreenGameplay song options") ); m_textSongOptions.EnableShadow( false ); m_textSongOptions.SetName( ssprintf("SongOptions%s",bExtra?"Extra":"") ); SET_XY( m_textSongOptions );