mirror of
https://github.com/zeldaret/botw
synced 2026-07-28 07:08:23 -04:00
Fix matching errors
This commit is contained in:
@@ -141,8 +141,8 @@ bool getFlag_AoC_DragonFireChallengeRing_Advent(bool debug) { return getBool(fla
|
||||
void setFlag_AoC_DragonFireChallengeRing_Advent(bool value, bool debug) { setBool(value, flag_AoC_DragonFireChallengeRing_Advent(), debug); }
|
||||
bool getFlag_AoC_HardMode_Enabled(bool debug) { return getBool(flag_AoC_HardMode_Enabled(), debug); }
|
||||
void setFlag_AoC_HardMode_Enabled(bool value, bool debug) { setBool(value, flag_AoC_HardMode_Enabled(), debug); }
|
||||
void getFlag_AoC_RandomSpawnTreasure_Contents(char const** value, bool debug) { getStr64(flag_AoC_RandomSpawnTreasure_Contents(), value, debug); }
|
||||
void setFlag_AoC_RandomSpawnTreasure_Contents(const sead::SafeString& value, bool debug) { setStr64(value, flag_AoC_RandomSpawnTreasure_Contents(), debug); }
|
||||
void getFlag_AoC_RandomSpawnTreasure_Contents(char const** value, s32 idx, bool debug) { getStr64(flag_AoC_RandomSpawnTreasure_Contents(), value, idx, debug); }
|
||||
void setFlag_AoC_RandomSpawnTreasure_Contents(const sead::SafeString& value, s32 idx, bool debug) { setStr64(value, flag_AoC_RandomSpawnTreasure_Contents(), idx, debug); }
|
||||
bool getFlag_AoC_RandomSpawnTreasure_IsRandomized(bool debug) { return getBool(flag_AoC_RandomSpawnTreasure_IsRandomized(), debug); }
|
||||
void setFlag_AoC_RandomSpawnTreasure_IsRandomized(bool value, bool debug) { setBool(value, flag_AoC_RandomSpawnTreasure_IsRandomized(), debug); }
|
||||
bool getFlag_AoC_TestProg_Imoto_Flag_00(bool debug) { return getBool(flag_AoC_TestProg_Imoto_Flag_00(), debug); }
|
||||
|
||||
@@ -144,8 +144,8 @@ bool getFlag_AoC_DragonFireChallengeRing_Advent(bool debug = false);
|
||||
void setFlag_AoC_DragonFireChallengeRing_Advent(bool value, bool debug = false);
|
||||
bool getFlag_AoC_HardMode_Enabled(bool debug = false);
|
||||
void setFlag_AoC_HardMode_Enabled(bool value, bool debug = false);
|
||||
void getFlag_AoC_RandomSpawnTreasure_Contents(char const** value, bool debug = false);
|
||||
void setFlag_AoC_RandomSpawnTreasure_Contents(const sead::SafeString& value, bool debug = false);
|
||||
void getFlag_AoC_RandomSpawnTreasure_Contents(char const** value, s32 idx, bool debug = false);
|
||||
void setFlag_AoC_RandomSpawnTreasure_Contents(const sead::SafeString& value, s32 idx, bool debug = false);
|
||||
bool getFlag_AoC_RandomSpawnTreasure_IsRandomized(bool debug = false);
|
||||
void setFlag_AoC_RandomSpawnTreasure_IsRandomized(bool value, bool debug = false);
|
||||
bool getFlag_AoC_TestProg_Imoto_Flag_00(bool debug = false);
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
#include <heap/seadDisposer.h>
|
||||
#include <prim/seadDelegateEventSlot.h>
|
||||
#include <prim/seadTypedBitFlag.h>
|
||||
#include <thread/seadMutex.h>
|
||||
#include <type_traits>
|
||||
#include "KingSystem/GameData/gdtTriggerParam.h"
|
||||
#include "KingSystem/Resource/resHandle.h"
|
||||
@@ -510,7 +511,7 @@ private:
|
||||
sead::FixedSafeString<64> mStr; // TODO: rename
|
||||
u32 mTrackerBlockSaveNumberFlagCrc32 = 0;
|
||||
u32 mSyncStep = 0;
|
||||
sead::CriticalSection mCriticalSection;
|
||||
sead::Mutex mMutex;
|
||||
};
|
||||
KSYS_CHECK_SIZE_NX150(Manager, 0xdc8);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user