summaryrefslogtreecommitdiff
path: root/src/code/code_800F9280.c
diff options
context:
space:
mode:
authorengineer124 <47598039+engineer124@users.noreply.github.com>2021-12-06 04:13:53 +1100
committerGitHub <noreply@github.com>2021-12-05 12:13:53 -0500
commit79220ba58ae550441e42b4d2c79af7f7e4b9787b (patch)
treeb211be19a7ed0f066c2cbc5b71db1bcb5951d037 /src/code/code_800F9280.c
parente635e34265e5e1bc830193930fa1ea9fd552db8d (diff)
Document Sequence Modes and Related Functions (#1046)
* Document Audio_SetSequenceMode * Cleanup surrounding docs * format * Clean-up * fix capital `I` in `playeridx` * Dist -> DistSq * `SetCamModeAndSeqMode` -> `UpdateCamAndSeqModes` * Get rid of extra padding * PR Feedback
Diffstat (limited to 'src/code/code_800F9280.c')
-rw-r--r--src/code/code_800F9280.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/code/code_800F9280.c b/src/code/code_800F9280.c
index e6dd4b67d..36857b0de 100644
--- a/src/code/code_800F9280.c
+++ b/src/code/code_800F9280.c
@@ -391,14 +391,14 @@ void func_800FA174(u8 playerIdx) {
D_8016E348[playerIdx] = 0;
}
-void func_800FA18C(u8 playeridx, u8 arg1) {
+void func_800FA18C(u8 playerIdx, u8 arg1) {
u8 i;
- for (i = 0; i < D_8016E750[playeridx].unk_4D; i++) {
- u8 unkb = (D_8016E750[playeridx].unk_2C[i] & 0xF00000) >> 20;
+ for (i = 0; i < D_8016E750[playerIdx].unk_4D; i++) {
+ u8 unkb = (D_8016E750[playerIdx].unk_2C[i] & 0xF00000) >> 20;
if (unkb == arg1) {
- D_8016E750[playeridx].unk_2C[i] = 0xFF000000;
+ D_8016E750[playerIdx].unk_2C[i] = 0xFF000000;
}
}
}