mirror of https://github.com/zeldaret/botw.git
fix style
This commit is contained in:
parent
488f2c3e71
commit
341f9166d0
|
@ -6,9 +6,7 @@ SEAD_SINGLETON_DISPOSER_IMPL(DebugFinder)
|
||||||
|
|
||||||
DebugFinder::DebugFinder() = default;
|
DebugFinder::DebugFinder() = default;
|
||||||
|
|
||||||
void DebugFinder::init(sead::Heap* heap) {
|
void DebugFinder::init(sead::Heap* heap) {}
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
} // namespace ksys
|
||||||
|
|
||||||
|
|
|
@ -5,18 +5,18 @@
|
||||||
|
|
||||||
namespace ksys {
|
namespace ksys {
|
||||||
|
|
||||||
class DebugFinder{
|
class DebugFinder {
|
||||||
SEAD_SINGLETON_DISPOSER(DebugFinder)
|
SEAD_SINGLETON_DISPOSER(DebugFinder)
|
||||||
DebugFinder();
|
DebugFinder();
|
||||||
virtual ~DebugFinder();
|
virtual ~DebugFinder();
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void init(sead::Heap* heap);
|
void init(sead::Heap* heap);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
sead::FixedSafeString<0x40> unused_1;
|
sead::FixedSafeString<0x40> unused_1;
|
||||||
sead::FixedSafeString<0x100> unused_2;
|
sead::FixedSafeString<0x100> unused_2;
|
||||||
u32 unused_3 = 0;
|
u32 unused_3 = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace ksys::evt
|
} // namespace ksys
|
Loading…
Reference in New Issue