Fix finding jsfx on Windows

Closes #265

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2022-06-27 18:22:22 +01:00
parent 697e5ea677
commit 5f558c0d84
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0
3 changed files with 8 additions and 1 deletions

View file

@ -77,8 +77,11 @@ std::string getSpecialPath(const SpecialPath type)
case kSpecialPathCommonProgramFiles:
csidl = CSIDL_PROGRAM_FILES_COMMON;
break;
case kSpecialPathProgramFiles:
csidl = CSIDL_PROGRAM_FILES;
break;
case kSpecialPathAppData:
csidl = CSIDL_COMMON_APPDATA;
csidl = CSIDL_APPDATA;
break;
default:
return {};