Reformat gdtSpecialFlags.cpp as well

This commit is contained in:
Léo Lam 2025-05-24 16:12:39 +01:00
parent a7b0f34e51
commit f810b758f2
No known key found for this signature in database
GPG Key ID: 0DF30F9081000741
1 changed files with 3 additions and 1 deletions

View File

@ -12,7 +12,9 @@ const char* sDungeonClearFlagPrefix = "Clear_";
const char* sDungeonEnterFlagPrefix = "Enter_"; const char* sDungeonEnterFlagPrefix = "Enter_";
#define GDT_DEFINE_BOOL_GETTER(FLAG) \ #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(SaveProhibition)
GDT_DEFINE_BOOL_GETTER(SaveProhibitionArea) GDT_DEFINE_BOOL_GETTER(SaveProhibitionArea)