audio: Renamed new API SDL_UnpauseAudioDevice to SDL_ResumeAudioDevice.

This commit is contained in:
Ryan C. Gordon
2023-08-05 19:20:14 -04:00
parent 2b0c0f5b6b
commit e7d56dd0b2
9 changed files with 15 additions and 15 deletions

View File

@@ -123,7 +123,7 @@ test_multi_audio(SDL_AudioDeviceID *devices, int devcount)
/* try to start all the devices about the same time. SDL does not guarantee sync across physical devices. */
for (i = 0; i < devcount; i++) {
if (devices[i]) {
SDL_UnpauseAudioDevice(devices[i]);
SDL_ResumeAudioDevice(devices[i]);
}
}