@@ -37,7 +37,7 @@ public ControllerWidget(T control, YACLScreen screen, Dimension<Integer> dim) {
3737 }
3838
3939 @ Override
40- public void extractRenderState (GuiGraphicsExtractor graphics , int mouseX , int mouseY , float delta ) {
40+ public void extractRenderState (GuiGraphicsExtractor graphics , int mouseX , int mouseY , float a ) {
4141 hovered = isMouseOver (mouseX , mouseY );
4242
4343 Component name = control .option ().changed () ? modifiedOptionName : control .option ().name ();
@@ -47,17 +47,17 @@ public void extractRenderState(GuiGraphicsExtractor graphics, int mouseX, int mo
4747 graphics .text (textRenderer , shortenedName , getDimension ().x () + getXPadding (), getTextY (), getValueColor (), true );
4848
4949
50- drawValueText (graphics , mouseX , mouseY , delta );
50+ extractValueText (graphics , mouseX , mouseY , a );
5151 if (isHovered ()) {
52- drawHoveredControl (graphics , mouseX , mouseY , delta );
52+ extractHoveredControl (graphics , mouseX , mouseY , a );
5353 }
5454 }
5555
56- protected void drawHoveredControl (GuiGraphicsExtractor graphics , int mouseX , int mouseY , float delta ) {
56+ protected void extractHoveredControl (GuiGraphicsExtractor graphics , int mouseX , int mouseY , float a ) {
5757
5858 }
5959
60- protected void drawValueText (GuiGraphicsExtractor graphics , int mouseX , int mouseY , float delta ) {
60+ protected void extractValueText (GuiGraphicsExtractor graphics , int mouseX , int mouseY , float a ) {
6161 Component valueText = getValueText ();
6262 graphics .text (textRenderer , valueText , getDimension ().xLimit () - textRenderer .width (valueText ) - getXPadding (), getTextY (), getValueColor (), true );
6363 }
0 commit comments