YetAnotherConfigLib

YetAnotherConfigLib

13M Downloads

`renderBackgroundTexture` called incorrectly in YACLScreen#render

Qendolin opened this issue ยท 0 comments

commented

renderBackgroundTexture is called twice during screen rendering. Once directly by YACL:

public void render(GuiGraphics graphics, int mouseX, int mouseY, float delta) {
renderDirtBackground(graphics);
super.render(graphics, mouseX, mouseY, delta);
}

an another time in

YACLScreen#render
  Screen#render
    Screen#renderBackground
      Screen#renderBackgroundTexture

This doesn't cause an issue within yacl itself, but when overriding the method.