This commit is contained in:
Christian Semmler 2023-12-25 13:12:20 -05:00
parent c8a38db71d
commit 832cee3dae
2 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ class MxDSStreamingAction : public MxDSAction {
inline MxDSAction* GetInternalAction() { return m_internalAction; } inline MxDSAction* GetInternalAction() { return m_internalAction; }
inline MxU32 GetBufferOffset() { return m_bufferOffset; } inline MxU32 GetBufferOffset() { return m_bufferOffset; }
inline void SetUnknown94(MxU32 p_unk0x94) { m_unk0x94 = p_unk0x94; } inline void SetUnknown94(MxU32 p_unk0x94) { m_unk0x94 = p_unk0x94; }
inline void SetUnknown9c(MxU32 p_unk0x9c) { m_unk0x9c = p_unk0x9c; } inline void SetUnknown9c(MxS32 p_unk0x9c) { m_unk0x9c = p_unk0x9c; }
inline void SetUnknowna0(MxDSBuffer* p_unk0xa0) { m_unk0xa0 = p_unk0xa0; } inline void SetUnknowna0(MxDSBuffer* p_unk0xa0) { m_unk0xa0 = p_unk0xa0; }
inline void SetBufferOffset(MxU32 p_bufferOffset) { m_bufferOffset = p_bufferOffset; } inline void SetBufferOffset(MxU32 p_bufferOffset) { m_bufferOffset = p_bufferOffset; }

View File

@ -34,8 +34,8 @@ class MxNextActionDataStart : public MxCore {
inline void SetData(MxU32 p_data) { m_data = p_data; } inline void SetData(MxU32 p_data) { m_data = p_data; }
private: private:
MxU32 m_objectId; // 0x8 MxU32 m_objectId; // 0x08
MxS16 m_unk0x24; // 0xc MxS16 m_unk0x24; // 0x0c
MxU32 m_data; // 0x10 MxU32 m_data; // 0x10
}; };