mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Improve and fix 'CStudioHdr'
* Fixed crash that occurred due to misaligned member 'm_pMdlCacheVTable' which has been retyped to 'CMDLCache*' and renamed to 'm_pMDLCache' (actual object). * Added mapped out member 'm_pModelName'.
This commit is contained in:
parent
5806f719c6
commit
9a8db42575
@ -94,6 +94,11 @@
|
||||
// If this flag is present the model has a secondary UV layer, and by extension (previously) a VVC (IDVC) file.
|
||||
#define STUDIOHDR_FLAGS_USES_UV2 (1 << 25) // 0x2000000
|
||||
|
||||
//-------------------------------------------------------------------------------------
|
||||
// Forward declarations
|
||||
//-------------------------------------------------------------------------------------
|
||||
class CMDLCache;
|
||||
|
||||
enum
|
||||
{
|
||||
STUDIODATA_FLAGS_STUDIOMESH_LOADED = 0x0001,
|
||||
@ -1049,13 +1054,16 @@ private:
|
||||
void* vtbl;
|
||||
studiohdr_t* m_pStudioHdr;
|
||||
void* m_pVModel; // !TODO: 'virtualmodel_t'.
|
||||
char gap0[156];
|
||||
char gap_18[156];
|
||||
mstudiobbox_t m_pHitBox;
|
||||
char gap_10[1896];
|
||||
char gap_e0[1888];
|
||||
const char* m_pModelName;
|
||||
int m_nPerfAnimatedBones;
|
||||
int m_nPerfUsedBones;
|
||||
int m_nPerfAnimationLayers;
|
||||
void* m_pMdlCacheVTable;
|
||||
void* m_pAnimData_Maybe;
|
||||
char gap_860[16];
|
||||
CMDLCache* m_pMDLCache;
|
||||
};
|
||||
|
||||
class CStudioHWDataRef
|
||||
|
Loading…
x
Reference in New Issue
Block a user