Fix last commit, remove now useless plugins/res folder

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2022-02-01 18:19:56 +00:00
parent 29122b180b
commit 934b80c59b
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0
43 changed files with 183 additions and 224 deletions

View file

@ -91,7 +91,7 @@ std::string pluginManifest(const std::string& dirname) {
std::string pluginPath(const std::string& dirname) {
// no bundlePath set, assume local source build
if (bundlePath.empty())
return system::join(systemDir, "..", "..", "plugins", "res", dirname);
return system::join(systemDir, "..", "..", "plugins", dirname);
// bundlePath is present, use resources from bundle
return system::join(systemDir, dirname);
}