mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-04-10 19:15:13 +00:00
Removed some unnecessary log output when locating emulators when running as a Flatpak.
This commit is contained in:
parent
37aa3556d0
commit
2f80d1e578
|
|
@ -276,7 +276,7 @@ namespace Utils
|
||||||
|
|
||||||
for (auto it = pathList.cbegin(); it != pathList.cend(); ++it) {
|
for (auto it = pathList.cbegin(); it != pathList.cend(); ++it) {
|
||||||
Utils::Platform::runSystemCommand("flatpak-spawn --host which " + *it + "/" +
|
Utils::Platform::runSystemCommand("flatpak-spawn --host which " + *it + "/" +
|
||||||
executable + " > " + tempFile);
|
executable + " > " + tempFile + " 2>/dev/null");
|
||||||
std::ifstream tempFileStream;
|
std::ifstream tempFileStream;
|
||||||
tempFileStream.open(tempFile);
|
tempFileStream.open(tempFile);
|
||||||
getline(tempFileStream, emulatorPath);
|
getline(tempFileStream, emulatorPath);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue