From 4cb179e5ecc9636b78af51517655761f895eb38e Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sat, 29 Jan 2005 21:51:03 +0000 Subject: [PATCH] remove debugging --- stepmania/src/StepMania.cpp | 35 ----------------------------------- 1 file changed, 35 deletions(-) diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index e1f524f039..fc981bb4a5 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -1091,41 +1091,6 @@ int main(int argc, char* argv[]) CheckSettings(); LUA = new LuaManager; - - - RageTimer t; - float fDelta = 0; - Sprite s; - CString sCommands = "x,SCREEN_LEFT+100"; - Commands cmds = ParseCommands("horizalign,left;vertalign,top;zoom,0.8;shadowlength,2"); - ActorCommands* pacmds = new ActorCommands( cmds ); - - LUA->RunScript( - "SCREEN_LEFT = 100\n" - "left = 'left'\n" - "center = 'center'\n" - "right = 'right'\n" - "top = 'top'\n" - "middle = 'middle'\n" - "bottom = 'bottom'\n" - "F2 = function(self)" - " self:vertalign(top)" - " self:horizalign(left)" - " self:zoom(0.8)" - " self:shadowlength(2)" - "end" - ); - t.GetDeltaTime(); - for( int i=0; i<100000; i++ ) - { -// s.RunCommands( *pacmds ); - } - LOG->Trace( "Lua2 took %f", t.GetDeltaTime() ); - - - SAFE_DELETE( pacmds ); - - GAMEMAN = new GameManager; THEME = new ThemeManager; ANNOUNCER = new AnnouncerManager;