SDL_test_common.c: minor warning fix (SDL_AudioDeviceID is unsigned)

This commit is contained in:
Ozkan Sezer 2023-01-26 22:05:47 +03:00
parent 364db52ca3
commit b462027c53

View file

@ -1343,7 +1343,7 @@ SDLTest_CommonInit(SDLTest_CommonState *state)
}
state->audio_id = SDL_OpenAudioDevice(NULL, 0, &state->audiospec, NULL, 0);
if (state->audio_id <= 0) {
if (!state->audio_id) {
SDL_Log("Couldn't open audio: %s\n", SDL_GetError());
return SDL_FALSE;
}