]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - radiant/url.cpp
use Firefox, not Netscape
[xonotic/netradiant.git] / radiant / url.cpp
index 382dcd90dcb5558d59619f69e27e339b30bb5fe0..96f13a2e707d067cc112875292ca1e8f703728eb 100644 (file)
@@ -40,7 +40,7 @@ bool open_url(const char* url)
   // \todo FIXME: the way we open URLs on *nix should be improved. A script is good (see how I do on RTCW)
   char command[2*PATH_MAX];
   snprintf (command, sizeof(command), 
-            "netscape -remote \"openURL(%s,new-window)\" || netscape \"%s\" &", url, url);
+            "firefox -remote \"openURL(%s,new-window)\" || firefox \"%s\" &", url, url);
   return system(command) == 0;
 }
 #endif