From 28730a1f3f4f15b627c5d5c644fd1d7d38507bc9 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Mon, 6 Oct 2008 07:27:58 +0000 Subject: [PATCH] Add temp debugging. --- stepmania/src/OptionRowHandler.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/stepmania/src/OptionRowHandler.cpp b/stepmania/src/OptionRowHandler.cpp index 35d7de8e57..31cec680f7 100644 --- a/stepmania/src/OptionRowHandler.cpp +++ b/stepmania/src/OptionRowHandler.cpp @@ -77,8 +77,12 @@ RString OptionRowHandler::GetThemedItemText( int iChoice ) const bTheme = false; } - if( bTheme ) - s = CommonMetrics::LocalizeOptionItem( s, false ); + if( bTheme ) + { + LOG->MapLog( "OptionRowHandler::GetThemedItemText", "choice %d: %s", iChoice, s.c_str() ); + s = CommonMetrics::LocalizeOptionItem( s, false ); + LOG->UnmapLog( "OptionRowHandler::GetThemedItemText" ); + } return s; }