From ee8aea4a4db5ff86e12b84004ac884eebd2ab2f9 Mon Sep 17 00:00:00 2001 From: craignegrete Date: Sun, 19 Jan 2014 18:14:29 -0800 Subject: [PATCH] Update MenuState.as Missing semicolon at the end of line 134 --- src/MenuState.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MenuState.as b/src/MenuState.as index 98387f5..e01884f 100644 --- a/src/MenuState.as +++ b/src/MenuState.as @@ -131,7 +131,7 @@ package //If we were hip we'd use our own button animations, but we'll just recolor //the stock ones for now instead. var text:FlxText; - text = new FlxText(FlxG.width/2-50,FlxG.height/3+39,100,"by Adam Atomic") + text = new FlxText(FlxG.width/2-50,FlxG.height/3+39,100,"by Adam Atomic"); text.alignment = "center"; text.color = 0x3a5c39; add(text);