diff options
| author | MegaMech <MegaMech@users.noreply.github.com> | 2026-09-16 09:01:55 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-09-16 09:01:55 -0600 |
| commit | 60ac50c9628d25968bfe367e1b4b6f030078be64 (patch) | |
| tree | e03a0d825cfe443adcf076cb643c20692151f431 /src/audio/port_eu.c | |
| parent | 7adfdaa9abb18d76ae80f26bff58c2c4dc4f3f29 (diff) | |
| parent | 8fb42e50d70356300050048b57def3123e6d4552 (diff) | |
Merge branch 'main' into Caladius-patch-1Caladius-patch-1
Diffstat (limited to 'src/audio/port_eu.c')
| -rw-r--r-- | src/audio/port_eu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio/port_eu.c b/src/audio/port_eu.c index dfc9b12d2..1c4f0c11a 100644 --- a/src/audio/port_eu.c +++ b/src/audio/port_eu.c @@ -47,7 +47,7 @@ s32 D_800EA4A4 = 0; char port_eu_unused_string7[] = "Undefined Port Command %d\n"; void create_next_audio_buffer(s16* samples, u32 num_samples) { - static s32 gMaxAbiCmdCnt = 128; + UNUSED static s32 gMaxAbiCmdCnt = 128; s32 abiCmdCount; OSMesg specId; OSMesg msg; @@ -100,7 +100,7 @@ struct SPTask* create_next_audio_frame_task(void) { osSendMesg(D_800EA3A8, (OSMesg) gAudioFrameCount, OS_MESG_NOBLOCK); #else OSMesg audioMesg; - audioMesg.ptr = (void*) gAudioFrameCount; + audioMesg.ptr = (void*) (uintptr_t) gAudioFrameCount; osSendMesg(D_800EA3A8, audioMesg, OS_MESG_NOBLOCK); #endif |
