diff --git a/scripts/songselect/songwheel.lua b/scripts/songselect/songwheel.lua index 6e49253..5171577 100644 --- a/scripts/songselect/songwheel.lua +++ b/scripts/songselect/songwheel.lua @@ -2,7 +2,7 @@ require('common') local Easing = require('common.easings'); local Footer = require('components.footer'); -local HEADER_HEIGHT = 128; +local HEADER_HEIGHT = 100; local BAR_ALPHA = 191; local backgroundImage = gfx.CreateSkinImage("song_select/bg.png", 1) @@ -437,8 +437,8 @@ function drawHeader() gfx.Fill(); gfx.ClosePath() - gfx.ImageRect(28, 28, 423*0.85, 80*0.85, headerTitleImage, 1, 0) - gfx.ImageRect(28, 28, 423*0.85, 80*0.85, headerGlowTitleImage, animationHeaderGlowAlpha, 0) + gfx.ImageRect(42, 14, 423*0.85, 80*0.85, headerTitleImage, 1, 0) + gfx.ImageRect(42, 14, 423*0.85, 80*0.85, headerGlowTitleImage, animationHeaderGlowAlpha, 0) gfx.Restore() end