Skip to content

Commit da86617

Browse files
committed
Update for rename of SDL3 atomic int APIs
Signed-off-by: Simon McVittie <[email protected]>
1 parent 809804e commit da86617

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/mixer.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ mix_channels(void *udata, SDL_AudioStream *astream, int len, int total)
360360
/* Mix the music (must be done before the channels are added) */
361361
mix_music(music_data, stream, len);
362362

363-
master_vol = SDL_AtomicGet(&master_volume);
363+
master_vol = SDL_GetAtomicInt(&master_volume);
364364

365365
/* Mix any playing channels... */
366366
sdl_ticks = SDL_GetTicks();
@@ -1775,14 +1775,14 @@ void Mix_UnlockAudio(void)
17751775

17761776
int Mix_MasterVolume(int volume)
17771777
{
1778-
int prev_volume = SDL_AtomicGet(&master_volume);
1778+
int prev_volume = SDL_GetAtomicInt(&master_volume);
17791779
if (volume < 0) {
17801780
return prev_volume;
17811781
}
17821782
if (volume > MIX_MAX_VOLUME) {
17831783
volume = MIX_MAX_VOLUME;
17841784
}
1785-
SDL_AtomicSet(&master_volume, volume);
1785+
SDL_SetAtomicInt(&master_volume, volume);
17861786
return prev_volume;
17871787
}
17881788

0 commit comments

Comments
 (0)