Mercurial > mplayer.hg
changeset 30913:e1e4487b9b43
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.
author | diego |
---|---|
date | Wed, 24 Mar 2010 01:07:11 +0000 |
parents | f91ad62a2281 |
children | ce07076345c0 |
files | loader/module.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/loader/module.c Tue Mar 23 22:59:14 2010 +0000 +++ b/loader/module.c Wed Mar 24 01:07:11 2010 +0000 @@ -366,7 +366,7 @@ 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;