diff --git a/dlls/shell32/shellpath.c b/dlls/shell32/shellpath.c index 9943a269da4..1635441123d 100644 --- a/dlls/shell32/shellpath.c +++ b/dlls/shell32/shellpath.c @@ -725,7 +725,7 @@ BOOL WINAPI SHGetSpecialFolderPathA ( case CSIDL_PROGRAMS: hRootKey = HKEY_CURRENT_USER; strcpy(szValueName, "Programs"); - strcpy(szDefaultPath, "StartMenu\\Programs"); + strcpy(szDefaultPath, "Start Menu\\Programs"); break; case CSIDL_COMMON_PROGRAMS: @@ -748,26 +748,26 @@ BOOL WINAPI SHGetSpecialFolderPathA ( case CSIDL_STARTMENU: hRootKey = HKEY_CURRENT_USER; - strcpy(szValueName, "StartMenu"); - strcpy(szDefaultPath, "StartMenu"); + strcpy(szValueName, "Start Menu"); + strcpy(szDefaultPath, "Start Menu"); break; case CSIDL_COMMON_STARTMENU: hRootKey = HKEY_LOCAL_MACHINE; - strcpy(szValueName, "Common StartMenu"); - strcpy(szDefaultPath, "StartMenu"); + strcpy(szValueName, "Common Start Menu"); + strcpy(szDefaultPath, "Start Menu"); break; case CSIDL_STARTUP: hRootKey = HKEY_CURRENT_USER; - strcpy(szValueName, "Startup"); - strcpy(szDefaultPath, "StartMenu\\Programs\\Startup"); + strcpy(szValueName, "StartUp"); + strcpy(szDefaultPath, "Start Menu\\Programs\\StartUp"); break; case CSIDL_COMMON_STARTUP: hRootKey = HKEY_LOCAL_MACHINE; - strcpy(szValueName, "Common Startup"); - strcpy(szDefaultPath, "StartMenu\\Programs\\Startup"); + strcpy(szValueName, "Common StartUp"); + strcpy(szDefaultPath, "Start Menu\\Programs\\StartUp"); break; case CSIDL_TEMPLATES: