]> de.git.xonotic.org Git - xonotic/netradiant.git/commitdiff
use Firefox, not Netscape
authordivverent <divverent@61c419a2-8eb2-4b30-bcec-8cead039b335>
Mon, 2 Feb 2009 08:20:18 +0000 (08:20 +0000)
committerdivverent <divverent@61c419a2-8eb2-4b30-bcec-8cead039b335>
Mon, 2 Feb 2009 08:20:18 +0000 (08:20 +0000)
git-svn-id: svn://svn.icculus.org/netradiant/trunk@178 61c419a2-8eb2-4b30-bcec-8cead039b335

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