aboutsummaryrefslogtreecommitdiff
path: root/hge
diff options
context:
space:
mode:
authorGravatar chirs241097@gmail.com <chirs241097@gmail.com@c17bf020-1265-9734-9302-a83f62007ddb> 2014-03-30 13:42:44 +0000
committerGravatar chirs241097@gmail.com <chirs241097@gmail.com@c17bf020-1265-9734-9302-a83f62007ddb> 2014-03-30 13:42:44 +0000
commit6f6d2d2b4612869aa3b9be0af9a8e1d76182a8dc (patch)
tree70dd8e32f268f4e9c2e92e0967c78e77c7d67d81 /hge
parenta54a466252f41004b5199995f9bfda8072f7f09a (diff)
downloadbullet-lab-remix-6f6d2d2b4612869aa3b9be0af9a8e1d76182a8dc.tar.xz
Modify level density test, fix stubbed HGE::System_Launch.
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
}