LegoCacheSound and related STL (#560)

* LegoCacheSound and related STL

* Changes/annotations

---------

Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
MS
2024-02-13 18:34:14 -05:00
committed by GitHub
parent 6d3ce3b5cb
commit 971ac8b6e7
14 changed files with 564 additions and 18 deletions

View File

@@ -21,6 +21,7 @@ public:
inline MxS8 Compare(const MxString& p_str) const { return strcmp(m_data, p_str.m_data); }
inline const char* GetData() const { return m_data; }
inline const MxU16 GetLength() const { return m_length; }
// SYNTHETIC: LEGO1 0x100ae280
// MxString::`scalar deleting destructor'

View File

@@ -42,8 +42,8 @@ void MxAtomId::Destroy()
#ifdef COMPAT_MODE
MxAtomIdCounterSet::iterator it;
{
MxAtomIdCounter id_counter(m_internal);
it = AtomIdCounterSet()->find(&id_counter);
MxAtomIdCounter idCounter(m_internal);
it = AtomIdCounterSet()->find(&idCounter);
}
#else
MxAtomIdCounterSet::iterator it = AtomIdCounterSet()->find(&MxAtomIdCounter(m_internal));