Remove some extra semicolons

This commit is contained in:
Petar Popovic
2024-09-26 17:08:44 +02:00
committed by Ozkan Sezer
parent 345cae361d
commit 457d0edeaf
5 changed files with 7 additions and 7 deletions

View File

@@ -1588,7 +1588,7 @@ static void PrepareAudioFormat(bool recording, SDL_AudioSpec *spec)
}
if (spec->channels == 0) {
spec->channels = recording ? DEFAULT_AUDIO_RECORDING_CHANNELS : DEFAULT_AUDIO_PLAYBACK_CHANNELS;;
spec->channels = recording ? DEFAULT_AUDIO_RECORDING_CHANNELS : DEFAULT_AUDIO_PLAYBACK_CHANNELS;
const char *hint = SDL_GetHint(SDL_HINT_AUDIO_CHANNELS);
if (hint) {