From b2d8dd6ecf58b314a2cc6c3e09769560e39c2c6c Mon Sep 17 00:00:00 2001 From: Jonathan Payne Date: Sat, 20 Aug 2011 19:28:59 -0700 Subject: [PATCH] DifficultyDisplay finally works right. --- .../Graphics/ScreenSelectMusic DifficultyDisplay/default.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Themes/default/Graphics/ScreenSelectMusic DifficultyDisplay/default.lua b/Themes/default/Graphics/ScreenSelectMusic DifficultyDisplay/default.lua index eeb4c57c79..67b34b97a8 100644 --- a/Themes/default/Graphics/ScreenSelectMusic DifficultyDisplay/default.lua +++ b/Themes/default/Graphics/ScreenSelectMusic DifficultyDisplay/default.lua @@ -48,9 +48,12 @@ for idx,diff in pairs(Difficulty) do local steps = song:GetOneSteps( st, diff ); if steps then meter = steps:GetMeter(); + append = "" -- if diff == 'Difficulty_Edit' then - meter = GetEdits( song, st ) .. ' Edit'; + meter = GetEdits( song, st ); + append = ( GetEdits( song, st ) > 1 ) and "Edits" or "Edit" + meter = meter .. " " .. append end end end