This commit is contained in:
Christian Semmler 2024-12-21 09:14:37 -07:00
parent c0f0513207
commit f6e45598de
2 changed files with 2 additions and 8 deletions

View File

@ -156,7 +156,7 @@ class UnknownMx4DPointFloat {
};
// FUNCTION: BETA10 0x1004aaa0
int UnknownMx4DPointFloat::BETA_1004aaa0(Matrix4& p_matrix, float p_f)
inline int UnknownMx4DPointFloat::BETA_1004aaa0(Matrix4& p_matrix, float p_f)
{
float data[4];
Vector4 v(data);
@ -170,7 +170,7 @@ int UnknownMx4DPointFloat::BETA_1004aaa0(Matrix4& p_matrix, float p_f)
}
// FUNCTION: LEGO1 0x10004520
long UnknownMx4DPointFloat::FUN_10004520()
inline long UnknownMx4DPointFloat::FUN_10004520()
{
if (!m_unk0x30) {
return -1;

View File

@ -183,12 +183,6 @@ class Vector2 {
return *this;
}
Vector2& operator=(float* p_other)
{
Vector2::EqualsImpl(p_other);
return *this;
}
// FUNCTION: BETA10 0x1001d140
float& operator[](int idx) { return m_data[idx]; }