Nicolas Cannasse 19 years ago
parent
commit
bbc4e49880
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/Std.hx

+ 1 - 1
std/Std.hx

@@ -133,7 +133,7 @@ class Std {
 	public static function chr( x : Int ) : String {
 		return untyped
 		#if flash
-		String.fromCharCode(x);
+		String["fromCharCode"](x);
 		#else neko
 		{
 			var s = __dollar__smake(1);