Patch Neko Int32 set for now

This commit is contained in:
Joshua Granick
2015-07-22 08:45:36 -07:00
parent 0eb183fe59
commit fbead43570

View File

@@ -544,7 +544,7 @@ private abstract TypedArrayType(Int) from Int to Int {
#if cpp #if cpp
untyped __global__.__hxcpp_memory_set_i32(buffer.getData(), byteOffset, value); untyped __global__.__hxcpp_memory_set_i32(buffer.getData(), byteOffset, value);
#else #else
#if (haxe_ver >= 3.2) #if ((haxe_ver >= 3.2) && !neko) // causes error on some int values?
buffer.setInt32(byteOffset,value); buffer.setInt32(byteOffset,value);
#else #else
if (littleEndian) { if (littleEndian) {