From d01ca062d2120686be1546f31d1decdfa13337cc Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Fri, 3 Jun 2011 17:11:18 -0400 Subject: [PATCH] Fix lua error. Doesn't fix content. ...at least, doesn't look like it. --- .../Graphics/ScreenSelectMusic DifficultyDisplay/default.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Themes/default/Graphics/ScreenSelectMusic DifficultyDisplay/default.lua b/Themes/default/Graphics/ScreenSelectMusic DifficultyDisplay/default.lua index b26cdbe22e..966f417b67 100644 --- a/Themes/default/Graphics/ScreenSelectMusic DifficultyDisplay/default.lua +++ b/Themes/default/Graphics/ScreenSelectMusic DifficultyDisplay/default.lua @@ -8,7 +8,7 @@ local function GetEdits( in_Song, in_StepsType ) if sSong:HasEdits( sStepsType ) then local tAllSteps = sSong:GetAllSteps(); for i,Step in pairs(tAllSteps) do - if Step:IsAnEdit() and s:GetStepsType() == sStepsType then + if Step:IsAnEdit() and Step:GetStepsType() == sStepsType then iNumEdits = iNumEdits + 1; end end