1
0
Fork 0
mirror of https://github.com/EdgeTX/edgetx.git synced 2025-07-20 14:55:09 +03:00

Simulator libs wouldn't be found on linux (works on Win too)

This commit is contained in:
Andre Bernet 2015-03-14 23:58:18 +04:00
parent 1abc93bc0f
commit d2ae29544e

View file

@ -37,7 +37,7 @@ void registerSimulators()
filters << "*-simulator.so"; filters << "*-simulator.so";
#endif #endif
foreach(QString filename, dir.entryList(filters, QDir::Files)) { foreach(QString filename, dir.entryList(filters, QDir::Files)) {
registerSimulator(filename); registerSimulator(filename.prepend("./"));
} }
} }