Merge pull request #1745 from diesieben07/ingamegui-fix

Fix jukebox message being too low
This commit is contained in:
LexManos 2015-03-11 15:46:14 -07:00
commit 588f4e3350
1 changed files with 1 additions and 1 deletions

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);