Browse Source

Fix typo in Quad::mirror().

vrld 13 years ago
parent
commit
66f640fa0e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/modules/graphics/opengl/Quad.cpp

+ 1 - 1
src/modules/graphics/opengl/Quad.cpp

@@ -110,7 +110,7 @@ namespace opengl
 			if (x)
 				vertices[i].s = 1.0 - vertices[i].s;
 			if (y)
-				vertices[i].s = 1.0 - vertices[i].s;
+				vertices[i].t = 1.0 - vertices[i].t;
 		}
 	}