FREESCAPE: initialize all the members of TinyGLTexture

This commit is contained in:
neuromancer 2022-11-07 09:24:55 +01:00
parent c34f4af991
commit 4d0be9549e

View File

@ -33,6 +33,9 @@ TinyGLTexture::TinyGLTexture(const Graphics::Surface *surface) {
_width = surface->w;
_height = surface->h;
_format = surface->format;
_id = 0;
_internalFormat = 0;
_sourceFormat = 0;
_blitImage = tglGenBlitImage();