Cheat codes and sand castle stuff.

This commit is contained in:
MaikelChan
2023-08-09 20:58:56 +02:00
parent 7af9cad5be
commit e0fee1831b
5 changed files with 130 additions and 130 deletions

View File

@@ -9,7 +9,7 @@ u8* quizQuestionAskedBitfield;
/* .code */
bool quizQuestionAskedBitfield_get(s32 index){
return func_803200A4(quizQuestionAskedBitfield, index);
return getBitFromArray(quizQuestionAskedBitfield, index);
}
void quizQuestionAskedBitfield_free(void){
@@ -26,7 +26,7 @@ void quizQuestionAskedBitfield_init(void){
}
void quizQuestionAskedBitfield_set(s32 index, bool value){
func_8032015C(quizQuestionAskedBitfield, index, value);
setBitToArray(quizQuestionAskedBitfield, index, value);
}
void quizQuestionAskedBitfield_defrag(void){