From 0725a2c7264ce335e268050a4b67b00e3a05ac1d Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 21 Apr 2003 01:53:48 +0000 Subject: [PATCH] adjust tex coord order --- stepmania/src/CroppedSprite.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/CroppedSprite.cpp b/stepmania/src/CroppedSprite.cpp index 3220b32c7f..7aa715bcf5 100644 --- a/stepmania/src/CroppedSprite.cpp +++ b/stepmania/src/CroppedSprite.cpp @@ -51,8 +51,8 @@ void CroppedSprite::CropToSize( float fWidth, float fHeight ) if( iSourceWidth == iSourceHeight ) // this is a SSR/DWI CroppedSprite { float fCustomImageCoords[8] = { - 0.22f, 0.98f, // bottom left 0.02f, 0.78f, // top left + 0.22f, 0.98f, // bottom left 0.98f, 0.22f, // bottom right 0.78f, 0.02f, // top right };