summaryrefslogtreecommitdiff
path: root/src/audio/audio_thread.c
diff options
context:
space:
mode:
authorKiritoDv <kiritodev01@gmail.com>2024-04-18 15:06:13 -0600
committerSonic Dreamcaster <alejandro.asenjo88@gmail.com>2024-09-17 19:31:14 -0300
commitf71ebdca828a94ed6525a3d32fe8153960e5e102 (patch)
treee7d58bb0ad8e1c01215d67bbce7781ae0324d4b8 /src/audio/audio_thread.c
parenta041298125789720e99da013a5f359bc833ef3e4 (diff)
Fixed some weird casts
Diffstat (limited to 'src/audio/audio_thread.c')
-rw-r--r--src/audio/audio_thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio/audio_thread.c b/src/audio/audio_thread.c
index 81f83f20..d72016ad 100644
--- a/src/audio/audio_thread.c
+++ b/src/audio/audio_thread.c
@@ -167,7 +167,7 @@ void AudioThread_ProcessGlobalCmd(AudioCmd* cmd) {
case AUDIOCMD_OP_GLOBAL_INIT_SEQPLAYER:
case AUDIOCMD_OP_GLOBAL_INIT_SEQPLAYER_ALT:
AudioLoad_SyncInitSeqPlayer(cmd->arg0, cmd->arg1, cmd->arg2);
- AudioThread_SetFadeInTimer(cmd->arg0, cmd->data);
+ AudioThread_SetFadeInTimer(cmd->arg0, (s32) cmd->data);
break;
case AUDIOCMD_OP_GLOBAL_DISABLE_SEQPLAYER:
if (gSeqPlayers[cmd->arg0].enabled) {