Преглед изворни кода

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 пре 2 година
родитељ
комит
050d2e69b3
1 измењених фајлова са 3 додато и 0 уклоњено
  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;
 }