소스 검색

Fix bug with SDL_ShowMessageBox not working with wayland (#10810)

poleonek 1 년 전
부모
커밋
446ee3e7c5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/video/wayland/SDL_waylandmessagebox.c

+ 1 - 1
src/video/wayland/SDL_waylandmessagebox.c

@@ -83,7 +83,7 @@ static bool get_zenity_version(int *major, int *minor)
         return SDL_SetError("pipe() failed: %s", strerror(errno));
     }
 
-    if (run_zenity(argv, fd_pipe) == 0) {
+    if (run_zenity(argv, fd_pipe)) {
         FILE *outputfp = NULL;
         char version_str[ZENITY_VERSION_LEN];
         char *version_ptr = NULL, *end_ptr = NULL;