Просмотр исходного кода

Merge pull request #2735 from DDRBoxman/osxcase

libobs: Fix plugin folder search path case on macOS
Colin Edwards 5 лет назад
Родитель
Сommit
355cd6ccc0
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      libobs/obs-cocoa.m

+ 1 - 1
libobs/obs-cocoa.m

@@ -65,7 +65,7 @@ void add_default_module_paths(void)
 			[NSRunningApplication currentApplication];
 		NSURL *bundleURL = [app bundleURL];
 		NSURL *pluginsURL = [bundleURL
-			URLByAppendingPathComponent:@"Contents/Plugins"];
+			URLByAppendingPathComponent:@"Contents/PlugIns"];
 		NSURL *dataURL = [bundleURL
 			URLByAppendingPathComponent:
 				@"Contents/Resources/data/obs-plugins/%module%"];