Explorar o código

libobs: Log when libobs data file is not found

When an effect file is not found while initializing graphics, only one
line error below is logged. To clarify the reason why the initialization
was failed, also log when the file was not found.
Failed to initialize video. Your GPU may not be supported, or your
graphics drivers may need to be updated.
Norihiro Kamae %!s(int64=2) %!d(string=hai) anos
pai
achega
050d2e69b3
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  1. 3 0
      libobs/obs.c

+ 3 - 0
libobs/obs.c

@@ -1284,6 +1284,9 @@ char *obs_find_data_file(const char *file)
 			return path.array;
 	}
 
+	blog(LOG_ERROR, "Failed to find file '%s' in libobs data directory",
+	     file);
+
 	dstr_free(&path);
 	return NULL;
 }