Add attention flags enum, use enums in more places

This commit is contained in:
LagoLunatic
2023-10-15 00:45:59 -04:00
parent 98140ed1cd
commit 0ca314c746
24 changed files with 252 additions and 223 deletions
+2 -2
View File
@@ -47,7 +47,7 @@ dThunder_c::~dThunder_c() {
BOOL dThunder_c::execute() {
mBrk.setPlaySpeed(1.0f);
if (mBrk.play()) {
mDoAud_seStart(0x69f6, &mPos, 0, 0);
mDoAud_seStart(JA_SE_OBJ_THUNDER_FAR, &mPos, 0, 0);
fopKyM_Delete(this);
}
return TRUE;
@@ -189,7 +189,7 @@ s32 dThunder_c::create() {
mPosNeg.x = -mPos.x;
mPosNeg.y = -mPos.y;
mPosNeg.z = -mPos.z;
mDoAud_seStart(0x69f6, &mPosNeg, 0, 0);
mDoAud_seStart(JA_SE_OBJ_THUNDER_FAR, &mPosNeg, 0, 0);
}
return cPhs_COMPLEATE_e;