Skip to content

Commit

Permalink
Mesh: add missing line of code
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Aug 8, 2023
1 parent b4ab661 commit c93fce8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/main/java/com/github/stephengold/vsport/Mesh.java
Original file line number Diff line number Diff line change
Expand Up @@ -720,8 +720,8 @@ public String toString() {

for (int i = 0; i < numRendered; ++i) {
if ((i % vpt) == 0) {
result.append(nl);
}

int vertexIndex = (indexBuffer == null) ? i : indexBuffer.get(i);
result.append(vertexIndex);
result.append(": ");
Expand Down

0 comments on commit c93fce8

Please sign in to comment.