mirror of https://github.com/zeldaret/botw.git
Add missing newlines, normalize CRLF endings
This commit is contained in:
parent
8c075e0701
commit
e1ea48975e
|
@ -527,7 +527,9 @@ GDT_SET_IMPL_(setVec4f, detail::SetterTraits<sead::Vector4f>)
|
|||
return false; \
|
||||
return getParam().get1().NAME(name); \
|
||||
} \
|
||||
bool Manager::NAME##_(const sead::SafeString& name) { return NAME(name); } \
|
||||
bool Manager::NAME##_(const sead::SafeString& name) { \
|
||||
return NAME(name); \
|
||||
} \
|
||||
bool Manager::NAME(const sead::SafeString& name, int sub_idx) { \
|
||||
if (mBitFlags.isOn(BitFlag::_40000)) \
|
||||
return false; \
|
||||
|
|
|
@ -12,7 +12,9 @@ const char* sDungeonClearFlagPrefix = "Clear_";
|
|||
const char* sDungeonEnterFlagPrefix = "Enter_";
|
||||
|
||||
#define GDT_DEFINE_BOOL_GETTER(FLAG) \
|
||||
bool getBool_##FLAG(bool debug = false) { return getBool(flag_##FLAG(), debug); }
|
||||
bool getBool_##FLAG(bool debug = false) { \
|
||||
return getBool(flag_##FLAG(), debug); \
|
||||
}
|
||||
|
||||
GDT_DEFINE_BOOL_GETTER(SaveProhibition)
|
||||
GDT_DEFINE_BOOL_GETTER(SaveProhibitionArea)
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
#pragma once
|
||||
|
||||
#include <utility/aglAtomicPtrArray.h>
|
||||
#include <utility/aglParameter.h>
|
||||
#include <utility/aglParameterIO.h>
|
||||
#include <utility/aglParameterObj.h>
|
||||
#include <container/seadBuffer.h>
|
||||
#include <container/seadPtrArray.h>
|
||||
#include <container/seadSafeArray.h>
|
||||
#include <hostio/seadHostIONode.h>
|
||||
#include <mc/seadJobQueue.h>
|
||||
#include <prim/seadSizedEnum.h>
|
||||
#include <utility/aglAtomicPtrArray.h>
|
||||
#include <utility/aglParameter.h>
|
||||
#include <utility/aglParameterIO.h>
|
||||
#include <utility/aglParameterObj.h>
|
||||
#include "KingSystem/Resource/resHandle.h"
|
||||
#include "KingSystem/System/StageInfo.h"
|
||||
#include "KingSystem/Utils/Types.h"
|
||||
|
|
Loading…
Reference in New Issue