浏览代码

test/loopwavequeue.c: minor warning fix (SDL_AudioDeviceID is unsigned)

Ozkan Sezer 2 年之前
父节点
当前提交
742e356180
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      test/loopwavequeue.c

+ 1 - 1
test/loopwavequeue.c

@@ -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);