0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-19 19:42:24 +02:00

win32: fix desktop directory

The folder argument wasn't used, so it always returned the APPDATA dir.

(cherry picked from commit a2da53027b)
This commit is contained in:
wm4 2015-05-03 19:28:14 +02:00 committed by Diogo Franco (Kovensky)
parent 90ba8040d9
commit f56a7af9f6

View File

@ -51,7 +51,7 @@ static char *mp_get_win_app_dir(void *talloc_ctx)
{
wchar_t w_appdir[MAX_PATH + 1] = {0};
if (SHGetFolderPathW(NULL, CSIDL_APPDATA|CSIDL_FLAG_CREATE, NULL,
if (SHGetFolderPathW(NULL, folder|CSIDL_FLAG_CREATE, NULL,
SHGFP_TYPE_CURRENT, w_appdir) != S_OK)
return NULL;