Fix incorrect type in init statement

This commit is contained in:
m0rkeulv
2021-02-15 21:29:53 +01:00
parent 56d0bd1089
commit eb60e5581e

View File

@@ -864,8 +864,8 @@ class ImageDataUtil
var dataView = new ImageDataView(image, rect); var dataView = new ImageDataView(image, rect);
var position; var position;
var argb:ARGB = new RGBA(); var argb:ARGB = new RGBA();
var bgra:BGRA = new RGBA(); var bgra:BGRA = new BGRA();
var pixel:RGBA= new RGBA(); var pixel:RGBA = new RGBA();
var destPosition = 0; var destPosition = 0;
for (y in 0...dataView.height) for (y in 0...dataView.height)