mirror of
https://github.com/glest/glest-source.git
synced 2025-04-03 23:12:28 +02:00
Now uses xdg-open
This commit is contained in:
parent
2202759d1e
commit
6b6696cc32
@ -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();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user