diff options
| author | Archez <Archez@users.noreply.github.com> | 2025-04-01 22:33:38 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-01 22:33:38 -0400 |
| commit | 8f126344a4ef22765cfa550146f89bf428e86053 (patch) | |
| tree | 4ab7b0da4758afc7c23d278c3b1960d19630e892 /soh/src/code/code_800E4FE0.c | |
| parent | e8389e0b2e116bac34cbaea1e1eda0280a77da1a (diff) | |
Apply clang-format to files (#5273)
Diffstat (limited to 'soh/src/code/code_800E4FE0.c')
| -rw-r--r-- | soh/src/code/code_800E4FE0.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/soh/src/code/code_800E4FE0.c b/soh/src/code/code_800E4FE0.c index 6eb3ae369..a608b5234 100644 --- a/soh/src/code/code_800E4FE0.c +++ b/soh/src/code/code_800E4FE0.c @@ -396,8 +396,7 @@ void Audio_QueueCmd(u32 opArgs, u32 data) { } void Audio_QueueCmdF32(u32 opArgs, f32 data) { - union - { + union { f32 f; u32 u; } uData = { .f = data }; @@ -428,9 +427,8 @@ s32 Audio_ScheduleProcessCmds(void) { D_801304E8 = (u8)((gAudioContext.cmdWrPos - gAudioContext.cmdRdPos) + 0x100); } - ret = - osSendMesg32(gAudioContext.cmdProcQueueP, - (((gAudioContext.cmdRdPos & 0xFF) << 8) | (gAudioContext.cmdWrPos & 0xFF)), OS_MESG_NOBLOCK); + ret = osSendMesg32(gAudioContext.cmdProcQueueP, + (((gAudioContext.cmdRdPos & 0xFF) << 8) | (gAudioContext.cmdWrPos & 0xFF)), OS_MESG_NOBLOCK); if (ret != -1) { gAudioContext.cmdRdPos = gAudioContext.cmdWrPos; ret = 0; |
