From 35ce20313774afcaa4f2e70620b2ecdbe7e5a6e0 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 27 Jan 2006 23:38:19 +0000 Subject: [PATCH] themable --- stepmania/src/ScreenTextEntry.cpp | 9 +++++++-- stepmania/src/ScreenTextEntry.h | 5 +++++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/stepmania/src/ScreenTextEntry.cpp b/stepmania/src/ScreenTextEntry.cpp index 259576dd70..e2985e6fa7 100644 --- a/stepmania/src/ScreenTextEntry.cpp +++ b/stepmania/src/ScreenTextEntry.cpp @@ -75,6 +75,11 @@ REGISTER_SCREEN_CLASS( ScreenTextEntry ); void ScreenTextEntry::Init() { + ROW_START_X.Load( m_sName, "RowStartX" ); + ROW_START_Y.Load( m_sName, "RowStartY" ); + ROW_END_X.Load( m_sName, "RowEndX" ); + ROW_END_Y.Load( m_sName, "RowEndY" ); + ScreenWithMenuElements::Init(); m_textQuestion.LoadFromFont( THEME->GetPathF(m_sName,"question") ); @@ -148,8 +153,8 @@ void ScreenTextEntry::BeginScreen() for( int x=0; x ROW_START_X; + ThemeMetric ROW_START_Y; + ThemeMetric ROW_END_X; + ThemeMetric ROW_END_Y; RageSound m_sndType; RageSound m_sndBackspace;