aboutsummaryrefslogtreecommitdiff
path: root/hge
diff options
context:
space:
mode:
Diffstat (limited to 'hge')
-rw-r--r--hge/system.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/hge/system.cpp b/hge/system.cpp
index b7c112c..b914566 100644
--- a/hge/system.cpp
+++ b/hge/system.cpp
@@ -636,7 +636,9 @@ bool CALL HGE_Impl::System_Launch(const char *url)
CFRelease(cfurl);
return (err == noErr);
#else
- STUBBED("launch URL");
+ //STUBBED("launch URL");
+ char command[1024];sprintf(command,"xdg-open %s",url);
+ system(command);
return false;
#endif
}