diff options
| author | in1tiate <32779090+in1tiate@users.noreply.github.com> | 2020-12-28 04:37:33 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-28 04:37:33 -0600 |
| commit | 38b730ce0d00576761fe125f8e97f0d9f5813978 (patch) | |
| tree | 03f671ca9f26f432f5f29f20092efc7b0e25aeb3 | |
| parent | 3d4d6378384fee027ccbc3706a66c2f14cc0bac0 (diff) | |
add library path instead of setting it
Co-authored-by: oldmud0 <oldmud0@users.noreply.github.com>
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index c0a8a1d5..ce8b1dde 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -21,7 +21,7 @@ int main(int argc, char *argv[]) AOApplication main_app(argc, argv); - AOApplication::setLibraryPaths({AOApplication::applicationDirPath() + "/lib"}); + AOApplication::addLibraryPath(AOApplication::applicationDirPath() + "/lib"); QSettings *configini = main_app.configini; |
