From 80554fc6c135a04866fe06200269933ce119a8a6 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Mon, 12 Jun 2006 09:14:26 +0000 Subject: [PATCH] style cleanup --- stepmania/src/Font.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/Font.cpp b/stepmania/src/Font.cpp index eb5894ddee..426c8a2686 100644 --- a/stepmania/src/Font.cpp +++ b/stepmania/src/Font.cpp @@ -282,7 +282,8 @@ const glyph &Font::GetGlyph( wchar_t c ) const map::const_iterator it = m_iCharToGlyph.find(c); /* If that's missing, use the default glyph. */ - if(it == m_iCharToGlyph.end()) it = m_iCharToGlyph.find(FONT_DEFAULT_GLYPH); + if(it == m_iCharToGlyph.end()) + it = m_iCharToGlyph.find(FONT_DEFAULT_GLYPH); if(it == m_iCharToGlyph.end()) RageException::Throw( "The default glyph is missing from the font '%s'", path.c_str() );