From 736e055a82640d38e63f1f47d60949b8670a6534 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 31 Aug 2005 02:17:18 +0000 Subject: [PATCH] DifficultyColor returns r,g,b,a --- stepmania/Themes/default/Scripts/Colors.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/stepmania/Themes/default/Scripts/Colors.lua b/stepmania/Themes/default/Scripts/Colors.lua index 1c255cda65..4ae2dfb859 100644 --- a/stepmania/Themes/default/Scripts/Colors.lua +++ b/stepmania/Themes/default/Scripts/Colors.lua @@ -5,12 +5,12 @@ function PlayerColor( pn ) end function DifficultyColor( dc ) - if dc == DIFFICULTY_BEGINNER then return "0.0,0.9,1.0,1" end -- light blue - if dc == DIFFICULTY_EASY then return "0.9,0.9,0.0,1" end -- yellow - if dc == DIFFICULTY_MEDIUM then return "1.0,0.1,0.1,1" end -- light red - if dc == DIFFICULTY_HARD then return "0.2,1.0,0.2,1" end -- light green - if dc == DIFFICULTY_CHALLENGE then return "0.2,0.6,1.0,1" end -- blue - if dc == DIFFICULTY_EDIT then return "0.8,0.8,0.8,1" end -- gray + if dc == DIFFICULTY_BEGINNER then return color("0.0,0.9,1.0,1") end -- light blue + if dc == DIFFICULTY_EASY then return color("0.9,0.9,0.0,1") end -- yellow + if dc == DIFFICULTY_MEDIUM then return color("1.0,0.1,0.1,1") end -- light red + if dc == DIFFICULTY_HARD then return color("0.2,1.0,0.2,1") end -- light green + if dc == DIFFICULTY_CHALLENGE then return color("0.2,0.6,1.0,1") end -- blue + if dc == DIFFICULTY_EDIT then return color("0.8,0.8,0.8,1") end -- gray return "1,1,1,1" end