Fix error reported by #312.

This commit is contained in:
Ignacio Castano 2020-07-06 11:04:47 -07:00
parent ea53e0b1ee
commit 8fb22e951e

View File

@ -50,7 +50,7 @@ void Image::acquire(Color32 * data, uint w, uint h, uint d/*= 1*/)
width = w; width = w;
height = h; height = h;
depth = d; depth = d;
data = data; this->data = data;
} }
void Image::free() void Image::free()