mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
Implement/match IslePathActor::Exit (#997)
* Implement/match IslePathActor::Exit * Name * Name * Partially fix vector interface * Revert "Partially fix vector interface" This reverts commit6e7a1e2b08
. * Revert "Revert "Partially fix vector interface"" This reverts commite3860e3c9f
. * Fix * Remove some COMPAT_MODE
This commit is contained in:

committed by
GitHub

parent
9b22642f0c
commit
9a9bccda0e
@@ -120,13 +120,13 @@ public:
|
||||
virtual void Add(float* p_other) { AddImpl(p_other); } // vtable+0x4c
|
||||
|
||||
// FUNCTION: LEGO1 0x100021e0
|
||||
virtual void Add(const Vector2* p_other) { AddImpl((float*) p_other->m_data); } // vtable+0x48
|
||||
virtual void Add(const Vector2& p_other) { AddImpl((float*) p_other.m_data); } // vtable+0x48
|
||||
|
||||
// FUNCTION: LEGO1 0x100021f0
|
||||
virtual void Sub(const float* p_other) { SubImpl((float*) p_other); } // vtable+0x58
|
||||
|
||||
// FUNCTION: LEGO1 0x10002200
|
||||
virtual void Sub(const Vector2* p_other) { SubImpl((float*) p_other->m_data); } // vtable+0x54
|
||||
virtual void Sub(const Vector2& p_other) { SubImpl((float*) p_other.m_data); } // vtable+0x54
|
||||
|
||||
// FUNCTION: LEGO1 0x10002210
|
||||
virtual void Mul(float* p_other) { MulVectorImpl(p_other); } // vtable+0x64
|
||||
|
Reference in New Issue
Block a user