Compile fix

This commit is contained in:
Joshua Granick
2015-07-06 17:46:53 -07:00
parent bddce4f987
commit fba1af614f

View File

@@ -96,7 +96,7 @@ abstract UInt16Array(ArrayBufferView) from ArrayBufferView to ArrayBufferView {
//non spec haxe conversions
public static function fromBytes( bytes:haxe.io.Bytes, ?byteOffset:Int=0, ?len:Int ) : Uint16Array {
public static function fromBytes( bytes:haxe.io.Bytes, ?byteOffset:Int=0, ?len:Int ) : UInt16Array {
return new UInt16Array(bytes, byteOffset, len);
}