Skip to content

Commit

Permalink
Fix factory pedalboards dir for macOS
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Feb 5, 2024
1 parent ed45959 commit cd1bba4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/systray/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ void initEvironment()
#else
std::memcpy(path, appDir, appDirLen);
#ifdef __APPLE__
std::strncpy(path + appDirLen - 5, "/pedalboards", PATH_MAX - appDirLen - 1);
std::strncpy(path + appDirLen - 5, "/Resources/pedalboards", PATH_MAX - appDirLen - 1);
#else
std::strncpy(path + appDirLen, "/pedalboards", PATH_MAX - appDirLen - 1);
#endif
Expand Down

0 comments on commit cd1bba4

Please sign in to comment.