mirror of
https://github.com/yawut/SDL.git
synced 2026-09-10 10:06:26 -05:00
Fix bug 1723: flipped log text in audio suite - thanks P. Wiesemann
This commit is contained in:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user