From 8e630ccabe587c244c59f587769cfba8f5e22a88 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Fri, 9 Mar 2012 00:46:08 -0600 Subject: [PATCH] ffffffffffix some dumb typos; pointed out in hanubeki-modified-sm-ssc r272c294c7250 --- Themes/_fallback/Scripts/03 Gameplay.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Themes/_fallback/Scripts/03 Gameplay.lua b/Themes/_fallback/Scripts/03 Gameplay.lua index be15e61612..8c6c34feac 100644 --- a/Themes/_fallback/Scripts/03 Gameplay.lua +++ b/Themes/_fallback/Scripts/03 Gameplay.lua @@ -154,14 +154,14 @@ function RoutineSkinP1() if RoutineSkins[CurGameName()] then return RoutineSkins[CurGameName()].P1 end - return RoutineSkins["Default"].P1 + return RoutineSkins["default"].P1 end function RoutineSkinP2() if RoutineSkins[CurGameName()] then return RoutineSkins[CurGameName()].P2 end - return RoutineSkins["Default"].P2 + return RoutineSkins["default"].P2 end -- todo: use tables for some of these -aj