mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Fix other array decay too
Whoops.
This commit is contained in:
parent
b4da818e8c
commit
4d5a0e2cb0
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue