0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00

Remove /usr[/local]/lib/win32 from the list of Win32 codec search paths.

These paths have been deprecated a long time ago, just searching the
default binary codec path is enough nowadays.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30955 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2010-03-24 01:07:11 +00:00
parent 1b58868670
commit b78d83301a

View File

@ -366,7 +366,7 @@ static WIN_BOOL MODULE_FreeLibrary( WINE_MODREF *wm )
HMODULE WINAPI LoadLibraryExA(LPCSTR libname, HANDLE hfile, DWORD flags)
{
WINE_MODREF *wm = 0;
char* listpath[] = { "", "", "/usr/lib/win32", "/usr/local/lib/win32", 0 };
char* listpath[] = { "", "", 0 };
char path[512];
char checked[2000];
int i = -1;