Skip to content

Commit

Permalink
Merge pull request #59 from poqli/parameters
Browse files Browse the repository at this point in the history
Renamed some parameters for consistency
  • Loading branch information
andi-makes authored May 11, 2024
2 parents ab3b832 + b30958c commit c8218ff
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,11 @@ protected void init() {
}

@Override
public void render(@NotNull GuiGraphics guiGraphics, int i, int j, float f) {
public void render(@NotNull GuiGraphics guiGraphics, int mouseX, int mouseY, float delta) {
this.renderDirtBackground(guiGraphics);
list.render(guiGraphics, i, j , f);
list.render(guiGraphics, mouseX, mouseY, delta);
guiGraphics.drawCenteredString(this.font, this.title, this.width / 2, 20, 0xFFFFFF);
super.render(guiGraphics, i, j, f);
super.render(guiGraphics, mouseX, mouseY, delta);
}

@Override
Expand Down

0 comments on commit c8218ff

Please sign in to comment.