Fix jukebox message being too low with forge

This commit is contained in:
diesieben07 2015-03-11 23:25:41 +01:00
parent 5229abc26d
commit 642003e065

View file

@ -709,7 +709,7 @@ public class GuiIngameForge extends GuiIngame
if (opacity > 0)
{
GlStateManager.pushMatrix();
GlStateManager.translate((float)(width / 2), (float)(height - 48), 0.0F);
GlStateManager.translate((float)(width / 2), (float)(height - 68), 0.0F);
GlStateManager.enableBlend();
GlStateManager.tryBlendFuncSeparate(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA, 1, 0);
int color = (recordIsPlaying ? Color.HSBtoRGB(hue / 50.0F, 0.7F, 0.6F) & WHITE : WHITE);