Przeglądaj źródła

Merge pull request #441 from dgough/next

Fixed racer for android
Sean Paul Taylor 13 lat temu
rodzic
commit
a91b033478
1 zmienionych plików z 4 dodań i 4 usunięć
  1. 4 4
      gameplay/src/Mesh.cpp

+ 4 - 4
gameplay/src/Mesh.cpp

@@ -109,10 +109,10 @@ Mesh* Mesh::createQuadFullscreen()
 
     float vertices[] =
     {
-        x, y2,   0, 0,
-        x, y,    0, 1,
-        x2, y2,  1, 0,
-        x2, y,   1, 1
+        x, y2,   0, 1,
+        x, y,    0, 0,
+        x2, y2,  1, 1,
+        x2, y,   1, 0
     };
 
     VertexFormat::Element elements[] =