From: kramm Date: Wed, 12 Nov 2008 10:29:01 +0000 (+0000) Subject: with flash>=7, it's loadMovie, not loadmovie X-Git-Tag: release-0-9-0~868 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=ffea16a46309797e744a2ffe589127fd4dfb3d30 with flash>=7, it's loadMovie, not loadmovie --- diff --git a/lib/action/swf5compiler.tab.c b/lib/action/swf5compiler.tab.c index c1cc007..db78533 100644 --- a/lib/action/swf5compiler.tab.c +++ b/lib/action/swf5compiler.tab.c @@ -3369,7 +3369,7 @@ yyreduce: case 116: #line 394 "swf5compiler.y" - { yyval.str = strdup("loadmovie"); ;} + { yyval.str = strdup("loadMovie"); ;} break; case 117: diff --git a/lib/action/swf5compiler.y b/lib/action/swf5compiler.y index d80acb0..4acd426 100644 --- a/lib/action/swf5compiler.y +++ b/lib/action/swf5compiler.y @@ -1,4 +1,4 @@ -/* $Id: swf5compiler.y,v 1.1 2004/02/02 10:12:34 kramm Exp $ */ +/* $Id: swf5compiler.y,v 1.2 2008/11/12 10:29:01 kramm Exp $ */ %start program @@ -391,7 +391,7 @@ identifier | POST { $$ = strdup("post"); } | GET { $$ = strdup("get"); } | LOADVARIABLES { $$ = strdup("loadvariables"); } - | LOADMOVIE { $$ = strdup("loadmovie"); } + | LOADMOVIE { $$ = strdup("loadMovie"); } ; formals_list