Fix bug 1723: flipped log text in audio suite - thanks P. Wiesemann

This commit is contained in:
Andreas Schiffler 2013-02-18 07:59:05 -08:00
parent cc3e8105ec
commit 6b7a2ee71b

View file

@ -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 */