Skip to content

Commit

Permalink
Fixed double semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Riflusso committed Oct 1, 2024
1 parent 5e798a6 commit 3339009
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public void render(DrawContext context, int mouseX, int mouseY, float delta) {
loadQuad(context, color, x + w, 0, width, height, (x + w) / 32f, 0, width / 32f, height / 32f);
}
} else {
RenderSystem.setShaderTexture(0, 0);;
RenderSystem.setShaderTexture(0, 0);
color.set(0.25f, 0.25f, 0.25f, alpha);
loadQuad(context, color, 0, 0, width, height, 0, 0, width / 32f, height / 32f);
}
Expand Down

0 comments on commit 3339009

Please sign in to comment.