mirror of https://github.com/zeldaret/botw.git
Add listing for DebugFinder dtors
This commit is contained in:
parent
66aa5f139b
commit
e3a6211fc2
|
@ -94020,8 +94020,8 @@ Address,Quality,Size,Name
|
|||
0x000000710124a494,O,000100,_ZN4ksys11DebugFinder18SingletonDisposer_D1Ev
|
||||
0x000000710124a4f8,O,000108,_ZN4ksys11DebugFinder18SingletonDisposer_D0Ev
|
||||
0x000000710124a564,O,000292,_ZN4ksys11DebugFinder14createInstanceEPN4sead4HeapE
|
||||
0x000000710124a688,O,000004,_ZN4ksys11DebugFinder4initEPN4sead4HeapE
|
||||
0x000000710124a68c,U,000004,
|
||||
0x000000710124a688,O,000004,_ZN4ksys11DebugFinderD1Ev
|
||||
0x000000710124a68c,O,000004,_ZN4ksys11DebugFinderD0Ev
|
||||
0x000000710124a690,U,000008,
|
||||
0x000000710124a698,U,000108,
|
||||
0x000000710124a704,U,000108,
|
||||
|
|
Can't render this file because it is too large.
|
|
@ -6,6 +6,6 @@ SEAD_SINGLETON_DISPOSER_IMPL(DebugFinder)
|
|||
|
||||
DebugFinder::DebugFinder() = default;
|
||||
|
||||
void DebugFinder::init(sead::Heap* heap) {}
|
||||
DebugFinder::~DebugFinder() = default;
|
||||
|
||||
} // namespace ksys
|
||||
|
|
|
@ -8,10 +8,7 @@ namespace ksys {
|
|||
class DebugFinder {
|
||||
SEAD_SINGLETON_DISPOSER(DebugFinder)
|
||||
DebugFinder();
|
||||
~DebugFinder();
|
||||
|
||||
public:
|
||||
void init(sead::Heap* heap);
|
||||
virtual ~DebugFinder();
|
||||
|
||||
private:
|
||||
sead::FixedSafeString<0x40> unused_1;
|
||||
|
|
Loading…
Reference in New Issue