EMI: Initialize _texc, _verts and _layers in the constructor of BitmapData.

This commit is contained in:
Joni Vähämäki 2014-06-22 17:49:35 +03:00
parent bbf1843b73
commit 6fa4b66aa7

View file

@ -197,6 +197,9 @@ BitmapData::BitmapData(const Graphics::PixelBuffer &buf, int w, int h, const cha
_keepData = true;
_userData = nullptr;
_texc = nullptr;
_verts = nullptr;
_layers = nullptr;
g_driver->createBitmap(this);
}