fixed var type bug

This commit is contained in:
h4570
2020-12-07 17:31:37 +01:00
parent cad2623649
commit 4b158781af
+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;
}; };