From 83dd62720a96ea7d06b4fe6207193aab5ab734b2 Mon Sep 17 00:00:00 2001 From: FajsiEx Date: Fri, 30 Jul 2021 22:10:04 +0200 Subject: [PATCH] + song titles to song plates --- scripts/songselect/songwheel.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/songselect/songwheel.lua b/scripts/songselect/songwheel.lua index d6a4c1f..bd6157b 100644 --- a/scripts/songselect/songwheel.lua +++ b/scripts/songselect/songwheel.lua @@ -140,6 +140,11 @@ function drawSong(song, y) gfx.BeginPath() draw_number(songX+30, y+125, 1.0, selectedSongDifficulty.level, 2, difficultyNumbers, false, 0.65, 1) + -- Draw song title + gfx.FontSize(24) + gfx.TextAlign(gfx.TEXT_ALIGN_LEFT + gfx.TEXT_ALIGN_MIDDLE) + gfx.Text(song.title, songX+90, y+155); + -- Draw score badge local badgeImage = badgeImages[1]; if bestScore then