2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-07-07 03:31:52 +00:00

refactor: fix x64 compilation for ObjLoading

This commit is contained in:
Jan
2025-04-26 10:11:28 +01:00
committed by Jan Laupetin
parent ee4301952a
commit 5d0c94e430
34 changed files with 212 additions and 212 deletions

View File

@ -1314,9 +1314,9 @@ namespace IW3
{
char levelCount;
char flags;
int16_t dimensions[3];
uint16_t dimensions[3];
int format;
int resourceSize;
unsigned int resourceSize;
char data[1];
};

View File

@ -1478,8 +1478,8 @@ namespace T6
struct FontIcon
{
const char* name;
int numEntries;
int numAliasEntries;
unsigned int numEntries;
unsigned int numAliasEntries;
FontIconEntry* fontIconEntry;
FontIconAlias* fontIconAlias;
};