Commit d7fc4846 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

shell32: Fix the IDS_PERSONAL hardcoded default.

The corresponding folder is called 'My Documents' but on Linux it's usually called 'Documents' so that's much more appropriate fallback than 'Personal'.
parent aa096fb4
......@@ -2573,7 +2573,7 @@ static inline BOOL _SHAppendToUnixPath(char *szBasePath, LPCWSTR pwszSubPath) {
/* Fall back to hard coded defaults. */
switch (LOWORD(pwszSubPath)) {
case IDS_PERSONAL:
lstrcpyW(wszSubPath, PersonalW);
lstrcpyW(wszSubPath, DocumentsW);
break;
case IDS_MYMUSIC:
lstrcpyW(wszSubPath, My_MusicW);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment