mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-28 18:51:16 +00:00
Fix more bugs
This commit is contained in:
parent
5abe2d615b
commit
c7d2138554
@ -113,4 +113,7 @@
|
|||||||
// LIBRARY: LEGO1 0x100d21f0
|
// LIBRARY: LEGO1 0x100d21f0
|
||||||
// _strstr
|
// _strstr
|
||||||
|
|
||||||
|
// LIBRARY: LEGO1 0x100d2270
|
||||||
|
// __beginthreadex
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@ -11,6 +11,9 @@ class MxDSSource : public MxCore {
|
|||||||
public:
|
public:
|
||||||
MxDSSource() : m_lengthInDWords(0), m_pBuffer(NULL), m_position(-1) {}
|
MxDSSource() : m_lengthInDWords(0), m_pBuffer(NULL), m_position(-1) {}
|
||||||
|
|
||||||
|
// FUNCTION: LEGO1 0x100bff60
|
||||||
|
virtual ~MxDSSource() override { delete[] m_pBuffer; }
|
||||||
|
|
||||||
// FUNCTION: LEGO1 0x100c0010
|
// FUNCTION: LEGO1 0x100c0010
|
||||||
inline virtual const char* ClassName() const override // vtable+0x0c
|
inline virtual const char* ClassName() const override // vtable+0x0c
|
||||||
{
|
{
|
||||||
@ -41,4 +44,7 @@ class MxDSSource : public MxCore {
|
|||||||
MxLong m_position; // 0x10
|
MxLong m_position; // 0x10
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// SYNTHETIC: LEGO1 0x100c00a0
|
||||||
|
// MxDSSource::`scalar deleting destructor'
|
||||||
|
|
||||||
#endif // MXDSSOURCE_H
|
#endif // MXDSSOURCE_H
|
||||||
|
|||||||
@ -78,7 +78,7 @@ void MxEventPresenter::ReadyTickle()
|
|||||||
// FUNCTION: LEGO1 0x100c2eb0
|
// FUNCTION: LEGO1 0x100c2eb0
|
||||||
void MxEventPresenter::StartingTickle()
|
void MxEventPresenter::StartingTickle()
|
||||||
{
|
{
|
||||||
MxStreamChunk* chunk = NextChunk();
|
MxStreamChunk* chunk = CurrentChunk();
|
||||||
|
|
||||||
if (chunk && m_action->GetElapsedTime() >= chunk->GetTime())
|
if (chunk && m_action->GetElapsedTime() >= chunk->GetTime())
|
||||||
ProgressTickleState(TickleState_Streaming);
|
ProgressTickleState(TickleState_Streaming);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user