Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fix bug 1723: flipped log text in audio suite - thanks P. Wiesemann
Browse files Browse the repository at this point in the history
  • Loading branch information
ferzkopp committed Feb 18, 2013
1 parent c24cb5c commit 81f7440
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/testautomation_audio.c
Expand Up @@ -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 */
Expand Down

0 comments on commit 81f7440

Please sign in to comment.