fix style

This commit is contained in:
iTNTPiston 2021-08-09 16:44:26 -07:00
parent 488f2c3e71
commit 341f9166d0
2 changed files with 7 additions and 9 deletions

View File

@ -6,9 +6,7 @@ SEAD_SINGLETON_DISPOSER_IMPL(DebugFinder)
DebugFinder::DebugFinder() = default;
void DebugFinder::init(sead::Heap* heap) {
}
void DebugFinder::init(sead::Heap* heap) {}
}
} // namespace ksys

View File

@ -5,18 +5,18 @@
namespace ksys {
class DebugFinder{
class DebugFinder {
SEAD_SINGLETON_DISPOSER(DebugFinder)
DebugFinder();
virtual ~DebugFinder();
public:
void init(sead::Heap* heap);
private:
sead::FixedSafeString<0x40> unused_1;
sead::FixedSafeString<0x100> unused_2;
u32 unused_3 = 0;
};
} // namespace ksys::evt
} // namespace ksys