Skip to content

Commit

Permalink
Fix my failure to increment properly.
Browse files Browse the repository at this point in the history
  • Loading branch information
kring committed Apr 30, 2013
1 parent c849941 commit aa49715
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Scene/ImageryLayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -794,8 +794,8 @@ define([
var y = j / 255.0;
for (var i = 0; i < 256; ++i) {
var x = i / 255.0;
positions[++index] = x;
positions[++index] = y;
positions[index++] = x;
positions[index++] = y;
}
}

Expand Down

0 comments on commit aa49715

Please sign in to comment.