From c0261844ea685f19e5a1f4fbbae0fcaf3aa6dbb6 Mon Sep 17 00:00:00 2001 From: FajsiEx Date: Wed, 11 Aug 2021 18:43:53 +0200 Subject: [PATCH] * songwheel header size and position to match EG --- scripts/songselect/songwheel.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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