JS compile fix

This commit is contained in:
Joshua Granick
2014-06-13 18:54:13 -07:00
parent 210ab867e0
commit cfb312811e
4 changed files with 4 additions and 4 deletions

View File

@@ -106,7 +106,7 @@ class UpdateEventManager extends EventManager<IUpdateEventListener> {
} }
public function triggerFrame (_):Void { public function triggerFrame (?_):Void {
handleEvent (event); handleEvent (event);

View File

@@ -1,6 +1,6 @@
package lime.utils; package lime.utils;
#if js #if js
typedef UInt16Array = js.html.UInt16Array; typedef UInt16Array = js.html.Uint16Array;
#else #else

View File

@@ -1,6 +1,6 @@
package lime.utils; package lime.utils;
#if js #if js
typedef UInt32Array = js.html.UInt32Array; typedef UInt32Array = js.html.Uint32Array;
#else #else

View File

@@ -1,6 +1,6 @@
package lime.utils; package lime.utils;
#if js #if js
typedef UInt8Array = js.html.UInt8Array; typedef UInt8Array = js.html.Uint8Array;
#else #else