From 95a920d7eea8a2db117aa9ffbc062b9027f24e32 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Tue, 10 Mar 2020 07:23:10 -0700 Subject: [PATCH] libobs: Remove legacy libobs data search path --- libobs/obs-windows.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/libobs/obs-windows.c b/libobs/obs-windows.c index 4e0a96f3e..d65be176b 100644 --- a/libobs/obs-windows.c +++ b/libobs/obs-windows.c @@ -60,9 +60,6 @@ char *find_libobs_data_file(const char *file) struct dstr path; dstr_init(&path); - if (check_path(file, "data/libobs/", &path)) - return path.array; - if (check_path(file, "../../data/libobs/", &path)) return path.array;