Browse Source

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 years ago
parent
commit
050d2e69b3
1 changed files with 3 additions and 0 deletions
  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;
 }