mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 16:15:43 +00:00
ZoneCode: Fix XModel bone count not being unsigned but being used as it was
This commit is contained in:
parent
4932994355
commit
69fff81b02
@ -550,9 +550,9 @@ namespace T6
|
|||||||
struct XModel
|
struct XModel
|
||||||
{
|
{
|
||||||
const char* name;
|
const char* name;
|
||||||
char numBones;
|
unsigned char numBones;
|
||||||
char numRootBones;
|
unsigned char numRootBones;
|
||||||
char numsurfs;
|
unsigned char numsurfs;
|
||||||
char lodRampType;
|
char lodRampType;
|
||||||
unsigned __int16* boneNames;
|
unsigned __int16* boneNames;
|
||||||
char* parentList;
|
char* parentList;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user