diff --git a/radiant/url.cpp b/radiant/url.cpp index 382dcd90..96f13a2e 100644 --- a/radiant/url.cpp +++ b/radiant/url.cpp @@ -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