diff --git a/lime/utils/ByteArray.hx b/lime/utils/ByteArray.hx index e56f44919..cd1a90673 100644 --- a/lime/utils/ByteArray.hx +++ b/lime/utils/ByteArray.hx @@ -730,7 +730,7 @@ class ByteArray #if !js extends Bytes implements ArrayAccess implements IDa #if neko untyped __dollar__sset (b, position++, value & 0xff); #else - b[position++] = value & 0xFF; + b[position++] = untyped value & 0xFF; #end #end