Skip to content

Commit

Permalink
ScreenDrawing: Remove unnecessary leftover DrawContext.draw() call
Browse files Browse the repository at this point in the history
  • Loading branch information
Juuxel committed Oct 23, 2024
1 parent 2993503 commit 45dc93e
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ public static void texturedRect(DrawContext context, int x, int y, int width, in
buffer.vertex(model, x + width, y + height, 0).texture(u2, v2).color(color);
buffer.vertex(model, x + width, y, 0).texture(u2, v1).color(color);
buffer.vertex(model, x, y, 0).texture(u1, v1).color(color);
context.draw();
}

/**
Expand Down

0 comments on commit 45dc93e

Please sign in to comment.