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'.
This commit is contained in:
parent
aa096fb456
commit
d7fc48463b
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue