From e501603b52e7fe008f16bef9cf699455c57a0264 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Tue, 3 Apr 2007 03:12:47 +0000 Subject: [PATCH] Do the scaling/croping in Init, rather than each time through On. --- .../default/BGAnimations/ScreenLogo background/default.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stepmania/Themes/default/BGAnimations/ScreenLogo background/default.lua b/stepmania/Themes/default/BGAnimations/ScreenLogo background/default.lua index 204dde975a..90844450eb 100644 --- a/stepmania/Themes/default/BGAnimations/ScreenLogo background/default.lua +++ b/stepmania/Themes/default/BGAnimations/ScreenLogo background/default.lua @@ -1,4 +1,3 @@ return LoadActor( "bg.png" ) .. { - InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y); - OnCommand=cmd(scale_or_crop_background); + InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y;scale_or_crop_background); }