Integrate C++11 branch into 5_1-new

This commit is contained in:
teejusb
2019-06-22 12:35:38 -07:00
444 changed files with 19503 additions and 21007 deletions
+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;