From 2b833657fb0572b1a3c379196068667134a248d4 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Fri, 18 Mar 2005 01:16:49 +0000 Subject: [PATCH] fix medium color --- stepmania/Themes/default/Scripts/Colors.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/Themes/default/Scripts/Colors.lua b/stepmania/Themes/default/Scripts/Colors.lua index f2d2af7a14..1c255cda65 100644 --- a/stepmania/Themes/default/Scripts/Colors.lua +++ b/stepmania/Themes/default/Scripts/Colors.lua @@ -7,7 +7,7 @@ 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.1.0,0.1,1" end -- light red + 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