Even simpler.

This commit is contained in:
Jason Felds
2013-04-30 22:51:49 -04:00
parent efb0a386f4
commit eb5e380edf
+2 -2
View File
@@ -85,9 +85,9 @@ void ScreenNameEntry::ScrollingText::DrawPrimitives()
m_Stamp.SetDiffuseAlpha( fAlpha );
m_Stamp.SetText( c );
m_Stamp.SetY( fY );
FOREACH_CONST( float, m_Xs, x )
for (float const &x : m_Xs)
{
m_Stamp.SetX( *x );
m_Stamp.SetX( x );
m_Stamp.Draw();
}
fY += g_fCharsSpacingY;