mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-05 19:08:12 +00:00
test/loopwavequeue.c: minor warning fix (SDL_AudioDeviceID is unsigned)
This commit is contained in:
@@ -114,7 +114,7 @@ int main(int argc, char *argv[])
|
||||
/* Initialize fillerup() variables */
|
||||
g_audio_id = SDL_OpenAudioDevice(NULL, 0, &wave.spec, NULL, 0);
|
||||
|
||||
if (g_audio_id <= 0) {
|
||||
if (!g_audio_id) {
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't open audio: %s\n", SDL_GetError());
|
||||
SDL_free(wave.sound);
|
||||
quit(2);
|
||||
|
Reference in New Issue
Block a user