From 1f6fc41eaebc3c565bef12606ff98a076fc32e89 Mon Sep 17 00:00:00 2001 From: shedaniel Date: Thu, 19 Mar 2020 04:30:52 +0800 Subject: 20w12a Signed-off-by: shedaniel --- src/main/java/me/shedaniel/rei/gui/widget/EntryWidget.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/me/shedaniel/rei/gui/widget/EntryWidget.java') diff --git a/src/main/java/me/shedaniel/rei/gui/widget/EntryWidget.java b/src/main/java/me/shedaniel/rei/gui/widget/EntryWidget.java index 637a188cc..d6f3f7cb9 100644 --- a/src/main/java/me/shedaniel/rei/gui/widget/EntryWidget.java +++ b/src/main/java/me/shedaniel/rei/gui/widget/EntryWidget.java @@ -295,7 +295,7 @@ public class EntryWidget extends Slot { protected void drawBackground(int mouseX, int mouseY, float delta) { if (background) { minecraft.getTextureManager().bindTexture(REIHelper.getInstance().isDarkThemeEnabled() ? RECIPE_GUI_DARK : RECIPE_GUI); - blit(bounds.x, bounds.y, 0, 222, bounds.width, bounds.height); + drawTexture(bounds.x, bounds.y, 0, 222, bounds.width, bounds.height); } } -- cgit