Now uses xdg-open

This commit is contained in:
mathusummut 2019-03-21 12:39:00 +01:00
parent 2202759d1e
commit 6b6696cc32

View File

@ -288,11 +288,14 @@ namespace Game {
if (button == 0) {
string update = Config::getInstance().getString("UpdateDownloadURL", "");
if (update != "") {
try {
#ifdef WIN32
ShellExecuteA(0, 0, update.c_str(), 0, 0, SW_SHOW);
ShellExecuteA(0, 0, update.c_str(), 0, 0, SW_SHOW);
#else
system(("open " + update).c_str());
printf("xdg-open call resulted in: %d\n", system(("xdg-open " + update).c_str());
#endif
} catch (...) {
}
}
/*startFTPClientIfRequired();