diff options
Diffstat (limited to 'hge')
-rw-r--r-- | hge/system.cpp | 4 |
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 } |