Merge pull request #54 from h4570/hotfix/texture-size-vars

Texture: Fixed var type bug
This commit is contained in:
Michał Mostowik
2020-12-08 21:41:14 +01:00
committed by GitHub
+2 -1
View File
@@ -189,7 +189,8 @@ private:
TextureType _type; TextureType _type;
std::vector<TextureLink> texLinks; std::vector<TextureLink> texLinks;
u32 id; u32 id;
u8 width, height, _isNameSet, _isSizeSet; u16 width, height;
u8 _isNameSet, _isSizeSet;
unsigned char *data; unsigned char *data;
}; };