From beb76a12e054d2315be98f928050e17b974aa230 Mon Sep 17 00:00:00 2001 From: disinvite Date: Wed, 11 Dec 2024 10:35:36 -0500 Subject: [PATCH] Fix Act3ListElement constructors --- LEGO1/lego/legoomni/include/act3.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/LEGO1/lego/legoomni/include/act3.h b/LEGO1/lego/legoomni/include/act3.h index 463ad1f5..a8bfb77e 100644 --- a/LEGO1/lego/legoomni/include/act3.h +++ b/LEGO1/lego/legoomni/include/act3.h @@ -21,10 +21,12 @@ struct Act3ListElement { undefined4 m_unk0x04; // 0x04 undefined m_unk0x08; // 0x08 - Act3ListElement(){}; + Act3ListElement() {} Act3ListElement(MxU32 p_objectId, undefined4 p_unk0x04, undefined p_unk0x08) - : m_objectId(p_objectId), m_unk0x04(p_unk0x04), m_unk0x08(p_unk0x08){}; + : m_objectId(p_objectId), m_unk0x04(p_unk0x04), m_unk0x08(p_unk0x08) + { + } int operator==(Act3ListElement) const { return 0; } int operator<(Act3ListElement) const { return 0; }