mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-09-02 15:07:26 +00:00
ZoneCode: Fix XModel bone count not being unsigned but being used as it was
This commit is contained in:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user