Skip to content

Commit

Permalink
Update FpsGraphComponent.java
Browse files Browse the repository at this point in the history
fixed FPSGraph hud component being labled "(movement)" until in game
  • Loading branch information
ProfitDaGod authored Aug 1, 2023
1 parent db52ae0 commit e3ba19d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public void render(int mouseX, int mouseY, float partialTicks) {
// border
RenderUtil.drawBorderedRectBlurred(this.getX(), this.getY(), this.getX() + this.getW(), this.getY() + this.getH(), 2.0f, 0x00000000, 0x90101010);
} else {
mc.fontRenderer.drawStringWithShadow("(movement)", this.getX(), this.getY(), 0xFFAAAAAA);
mc.fontRenderer.drawStringWithShadow("(fps graph)", this.getX(), this.getY(), 0xFFAAAAAA);
}
}

Expand Down

0 comments on commit e3ba19d

Please sign in to comment.