Skip to content

Commit 27b53bd

Browse files
committed
Fix UnbidDummy initialization
1 parent 93928e8 commit 27b53bd

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

include/prim/seadDelegate.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -580,11 +580,17 @@ class AnyDelegateR
580580
class UnbindDummy final : public Base::Interface_
581581
{
582582
public:
583+
UnbindDummy() {}
583584
R invoke() override { return {}; }
584585
#if SEAD_DELEGATE_ISNODUMMY
585586
bool isNoDummy() const override { return false; }
586587
#endif
588+
private:
589+
s32 mUnk = 1;
587590
};
591+
592+
AnyDelegateR() {}
593+
588594
using Base::Base;
589595
using Base::operator=;
590596
};

0 commit comments

Comments
 (0)