SDL_test_common.c: minor warning fix (SDL_AudioDeviceID is unsigned)
This commit is contained in:
@@ -1343,7 +1343,7 @@ SDLTest_CommonInit(SDLTest_CommonState *state)
|
|||||||
}
|
}
|
||||||
|
|
||||||
state->audio_id = SDL_OpenAudioDevice(NULL, 0, &state->audiospec, NULL, 0);
|
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());
|
SDL_Log("Couldn't open audio: %s\n", SDL_GetError());
|
||||||
return SDL_FALSE;
|
return SDL_FALSE;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user