mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-11 15:28:11 -05:00
Add dynamic allocation alignment to be able to load T6 MemoryBlock asset which isnt used at all so why am i doing this again
This commit is contained in:
@ -2422,6 +2422,12 @@ namespace T6
|
||||
int customBool2;
|
||||
};
|
||||
|
||||
union MemoryBlockData
|
||||
{
|
||||
char* mainData;
|
||||
char* videoData;
|
||||
char* streamData;
|
||||
};
|
||||
|
||||
struct MemoryBlock
|
||||
{
|
||||
@ -2431,7 +2437,7 @@ namespace T6
|
||||
bool streamMem;
|
||||
unsigned int size;
|
||||
unsigned int alignment;
|
||||
char* data;
|
||||
MemoryBlockData data;
|
||||
};
|
||||
|
||||
struct cmodel_t2
|
||||
|
Reference in New Issue
Block a user