From 6fed5cf86ecedd2ba8052be8534d89330d2f09fb Mon Sep 17 00:00:00 2001 From: FajsiEx Date: Sat, 20 Nov 2021 19:36:19 +0100 Subject: [PATCH] - hide debug texts --- scripts/songselect/filterwheel.lua | 6 +++--- scripts/songselect/songwheel.lua | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/songselect/filterwheel.lua b/scripts/songselect/filterwheel.lua index e555b1c..0bd8c55 100644 --- a/scripts/songselect/filterwheel.lua +++ b/scripts/songselect/filterwheel.lua @@ -350,9 +350,9 @@ render = function(deltatime, shown) gfx.FontSize(18) gfx.TextAlign(gfx.TEXT_ALIGN_LEFT + gfx.TEXT_ALIGN_TOP) gfx.FillColor(255, 255, 255, 255); - gfx.Text('S_M: ' .. selectionMode .. ' // S_F: ' .. selectedFolder .. - ' // S_L: ' .. selectedLevel .. ' // L_TS: ' .. - transitionLeaveScale .. ' // L_TRT: ' .. transitionLeaveReappearTimer, 8, 1870); + -- gfx.Text('S_M: ' .. selectionMode .. ' // S_F: ' .. selectedFolder .. + -- ' // S_L: ' .. selectedLevel .. ' // L_TS: ' .. + -- transitionLeaveScale .. ' // L_TRT: ' .. transitionLeaveReappearTimer, 8, 1870); end set_selection = function(newIndex, isFolder) diff --git a/scripts/songselect/songwheel.lua b/scripts/songselect/songwheel.lua index af0d786..3888ea0 100644 --- a/scripts/songselect/songwheel.lua +++ b/scripts/songselect/songwheel.lua @@ -771,7 +771,7 @@ render = function (deltaTime) gfx.TextAlign(gfx.TEXT_ALIGN_LEFT + gfx.TEXT_ALIGN_TOP) local debugScrollingUp= "FALSE" if scrollingUp then debugScrollingUp = "TRUE" end; - gfx.Text('S_I: ' .. selectedIndex .. ' // S_D: ' .. selectedDifficulty .. ' // S_UP: ' .. debugScrollingUp .. ' // AC_TS: ' .. transitionAfterscrollScale .. ' // L_TS: ' .. transitionLeaveScale, 8, 8); + -- gfx.Text('S_I: ' .. selectedIndex .. ' // S_D: ' .. selectedDifficulty .. ' // S_UP: ' .. debugScrollingUp .. ' // AC_TS: ' .. transitionAfterscrollScale .. ' // L_TS: ' .. transitionLeaveScale, 8, 8); end songs_changed = function (withAll)