scene uploader: swap seColor/nwColor which had their mappings swapped

This commit is contained in:
Adam
2019-02-09 22:53:09 -05:00
parent 80ed9a8af6
commit bc932a7942

View File

@@ -300,7 +300,7 @@ class SceneUploader
int vertexCx = localX + Perspective.LOCAL_TILE_SIZE;
int vertexCy = localY;
int vertexCz = seHeight;
final int c2 = nwColor;
final int c2 = seColor;
// 1,1
int vertexAx = localX + Perspective.LOCAL_TILE_SIZE;
@@ -312,7 +312,7 @@ class SceneUploader
int vertexBx = localX;
int vertexBy = localY + Perspective.LOCAL_TILE_SIZE;
int vertexBz = nwHeight;
final int c4 = seColor;
final int c4 = nwColor;
vertexBuffer.put(vertexAx, vertexAz, vertexAy, c3);
vertexBuffer.put(vertexBx, vertexBz, vertexBy, c4);