From cc2756d2f7543a8408ab4077c8cc714eb3132733 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 21 Apr 2003 02:44:11 +0000 Subject: [PATCH] adjust tex coord order --- stepmania/src/Banner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Banner.cpp b/stepmania/src/Banner.cpp index 2407da6fdd..7b93e68216 100644 --- a/stepmania/src/Banner.cpp +++ b/stepmania/src/Banner.cpp @@ -61,8 +61,8 @@ void Banner::Update( float fDeltaTime ) float fTexCoords[8] = { - 0+m_fPercentScrolling, pTextureRect->bottom, // bottom left 0+m_fPercentScrolling, pTextureRect->top, // top left + 0+m_fPercentScrolling, pTextureRect->bottom, // bottom left 1+m_fPercentScrolling, pTextureRect->bottom, // bottom right 1+m_fPercentScrolling, pTextureRect->top, // top right };