Compile fix

This commit is contained in:
Joshua Granick
2014-12-08 13:35:52 -08:00
parent 08368f20dc
commit 5a85280115

View File

@@ -730,7 +730,7 @@ class ByteArray #if !js extends Bytes implements ArrayAccess<Int> implements IDa
#if neko
untyped __dollar__sset (b, position++, value & 0xff);
#else
b[position++] = value & 0xFF;
b[position++] = untyped value & 0xFF;
#end
#end