SDL: Updated documentation now that SDL_GetAudioDevices() has been split into separate functions for output and capture devices

From 615824a806896bd75435cbecdbfd9ec3b759e2ca Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Sat, 26 Aug 2023 17:30:57 -0700
Subject: [PATCH] Updated documentation now that SDL_GetAudioDevices() has been
 split into separate functions for output and capture devices

---
 docs/README-migration.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/README-migration.md b/docs/README-migration.md
index 21ac569f80f0..e7d825c7dc0f 100644
--- a/docs/README-migration.md
+++ b/docs/README-migration.md
@@ -125,13 +125,13 @@ Devices are not opened by an arbitrary string name anymore, but by device instan
 
 Many functions that would accept a device index and an `iscapture` parameter now just take an SDL_AudioDeviceID, as they are unique across all devices, instead of separate indices into output and capture device lists.
 
-Rather than iterating over audio devices using a device index, there is a new function, SDL_GetAudioDevices(), to get the current list of devices, and new functions to get information about devices from their instance ID:
+Rather than iterating over audio devices using a device index, there are new functions, SDL_GetAudioOutputDevices() and SDL_GetAudioCaptureDevices(), to get the current list of devices, and new functions to get information about devices from their instance ID:
 
 ```c
 {
     if (SDL_InitSubSystem(SDL_INIT_AUDIO) == 0) {
         int i, num_devices;
-        SDL_AudioDeviceID *devices = SDL_GetAudioDevices(/*iscapture=*/SDL_FALSE, &num_devices);
+        SDL_AudioDeviceID *devices = SDL_GetAudioOutputDevices(&num_devices);
         if (devices) {
             for (i = 0; i < num_devices; ++i) {
                 SDL_AudioDeviceID instance_id = devices[i];