Fix other array decay too

Whoops.
This commit is contained in:
Misa 2020-08-09 10:10:21 -07:00 committed by Ethan Lee
parent b4da818e8c
commit 4d5a0e2cb0
1 changed files with 1 additions and 1 deletions

View File

@ -352,7 +352,7 @@ void PLATFORM_getOSDirectory(char* output)
WCHAR utf16_path[MAX_PATH];
SHGetFolderPathW(NULL, CSIDL_PERSONAL, NULL, SHGFP_TYPE_CURRENT, utf16_path);
WideCharToMultiByte(CP_UTF8, 0, utf16_path, -1, output, MAX_PATH, NULL, NULL);
SDL_strlcat(output, "\\VVVVVV\\", sizeof(output));
SDL_strlcat(output, "\\VVVVVV\\", MAX_PATH);
#else
SDL_strlcpy(output, PHYSFS_getPrefDir("distractionware", "VVVVVV"), MAX_PATH);
#endif