From 610edd3d102509583243392a8ac2fe82729ce1a7 Mon Sep 17 00:00:00 2001 From: FajsiEx Date: Fri, 10 Sep 2021 19:15:04 +0200 Subject: [PATCH] - debug text from songwheel and filterwheel for now --- 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 b189bc2..2424833 100644 --- a/scripts/songselect/filterwheel.lua +++ b/scripts/songselect/filterwheel.lua @@ -339,9 +339,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 .. ' // T_E_S: ' .. - transitionEnterScale, 8, 1870); + -- gfx.Text('S_M: ' .. selectionMode .. ' // S_F: ' .. selectedFolder .. + -- ' // S_L: ' .. selectedLevel .. ' // T_E_S: ' .. + -- transitionEnterScale, 8, 1870); end set_selection = function(newIndex, isFolder) diff --git a/scripts/songselect/songwheel.lua b/scripts/songselect/songwheel.lua index c9cc527..f6842f2 100644 --- a/scripts/songselect/songwheel.lua +++ b/scripts/songselect/songwheel.lua @@ -697,7 +697,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, 8, 8); + -- gfx.Text('S_I: ' .. selectedIndex .. ' // S_D: ' .. selectedDifficulty .. ' // S_UP: ' .. debugScrollingUp .. ' // AC_TS: ' .. transitionAfterscrollScale, 8, 8); end songs_changed = function (withAll)