From f474da8ca3903c5b508ac319ca2145bdd5393f97 Mon Sep 17 00:00:00 2001 From: FajsiEx Date: Fri, 13 Aug 2021 22:59:35 +0200 Subject: [PATCH] + version text to footer --- scripts/components/footer.lua | 7 +++++++ scripts/songselect/filterwheel.lua | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/scripts/components/footer.lua b/scripts/components/footer.lua index fb6cf08..16ca588 100644 --- a/scripts/components/footer.lua +++ b/scripts/components/footer.lua @@ -47,6 +47,13 @@ local drawFooter = function () gfx.BeginPath(); gfx.ImageRect(desw-275, footerY-25, 328*0.85, 188*0.85, footerRightImage, 1, 0); + + gfx.BeginPath(); + gfx.LoadSkinFont("Digital-Serial-Bold.ttf"); + gfx.FontSize(20) + gfx.TextAlign(gfx.TEXT_ALIGN_LEFT + gfx.TEXT_ALIGN_TOP) + gfx.FillColor(255, 255, 255, 255); + gfx.Text('EXPERIMENTALGEAR 0.1.0 - CLOSED BETA. DO. NOT. LEAK.', 8, 1895); end local progressTransitions = function () diff --git a/scripts/songselect/filterwheel.lua b/scripts/songselect/filterwheel.lua index 27034bf..84c0d1f 100644 --- a/scripts/songselect/filterwheel.lua +++ b/scripts/songselect/filterwheel.lua @@ -309,7 +309,7 @@ render = function(deltatime, shown) gfx.FillColor(255, 255, 255, 255); gfx.Text('S_M: ' .. selectionMode .. ' // S_F: ' .. selectedFolder .. ' // S_L: ' .. selectedLevel .. ' // T_E_S: ' .. - transitionEnterScale, 8, 1900); + transitionEnterScale, 8, 1870); end set_selection = function(newIndex, isFolder)