Fix bug 1723: flipped log text in audio suite - thanks P. Wiesemann
This commit is contained in:
parent
cc3e8105ec
commit
6b7a2ee71b
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ int audio_enumerateAndNameAudioDevices()
|
|||
/* Get number of devices. */
|
||||
n = SDL_GetNumAudioDevices(t);
|
||||
SDLTest_AssertPass("Call to SDL_GetNumAudioDevices(%i)", t);
|
||||
SDLTest_Log("Number of %s devices < 0, reported as %i", (t) ? "output" : "capture", n);
|
||||
SDLTest_Log("Number of %s devices < 0, reported as %i", (t) ? "capture" : "output", n);
|
||||
SDLTest_AssertCheck(n >= 0, "Validate result is >= 0, got: %i", n);
|
||||
|
||||
/* Variation of non-zero type */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue