From 1bd5fa99c6fe58a0400a9758a6824d6f4eebaa3e Mon Sep 17 00:00:00 2001 From: jonschz Date: Sun, 6 Oct 2024 14:00:07 +0200 Subject: [PATCH] Cleanup --- LEGO1/realtime/vector.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/LEGO1/realtime/vector.h b/LEGO1/realtime/vector.h index 86c86570..a09e62c4 100644 --- a/LEGO1/realtime/vector.h +++ b/LEGO1/realtime/vector.h @@ -163,14 +163,6 @@ class Vector2 { return *this; } - // There is another candidate for `Vector2::operator[]` at BETA10 0x10010890, which is called from only three - // functions in BETA10: - // - `Matrix4::FromQuaternion()` - // - `Matrix4::ToQuaternion()` - // - `UnknownMx4DPointFloat::FUN_100040a0()` - // Maybe there is another subclass of `Vector4` involved that has the same VTABLE but a different `operator[]`. - // It is also interesting that `Matrix4::operator[]` is located right above at BETA10 0x10010860. - // FUNCTION: BETA10 0x1001d140 float& operator[](int idx) { return m_data[idx]; }