Fix panorama screen being faster in protocol selection screens

super.render() already draws the background.
This commit is contained in:
FlorianMichael 2024-07-06 15:44:00 +02:00
parent 0058bb5312
commit 6082ed6041
No known key found for this signature in database
GPG Key ID: C2FB87E71C425126
2 changed files with 0 additions and 2 deletions

View File

@ -56,7 +56,6 @@ public class PerServerVersionScreen extends VFPScreen {
@Override
public void render(DrawContext context, int mouseX, int mouseY, float delta) {
this.renderBackground(context, mouseX, mouseY, delta);
super.render(context, mouseX, mouseY, delta);
this.renderTitle(context);

View File

@ -60,7 +60,6 @@ public class ProtocolSelectionScreen extends VFPScreen {
@Override
public void render(DrawContext context, int mouseX, int mouseY, float delta) {
this.renderBackground(context, mouseX, mouseY, delta);
super.render(context, mouseX, mouseY, delta);
this.renderTitle(context);