small fixes for about screen and so on ...

This commit is contained in:
Titus Tscharntke 2012-11-20 23:21:04 +00:00
parent 6b32c747b5
commit fac5161b2f
2 changed files with 4 additions and 4 deletions

View File

@ -209,7 +209,7 @@ network slots and the other players have to join.
The best ways to find people to play a multi-player game are:
a) using the Internet Game menu
b) scheduling a game on the Glest forums
c) finding other players on the #glest IRC channel on irc.freenode.net.
c) finding other players on the #megaglest IRC channel on irc.freenode.net.
For LAN play, clients may click the 'Find LAN games' menu item to find servers
with an open network slot on the local network (this uses UDP broadcasting).

View File

@ -180,16 +180,16 @@ string getAboutString1(int i) {
switch(i) {
case 0: return "MegaGlest " + glestVersionString + " (" + "Shared Library " + sharedLibVersionString + ")";
case 1: return "Built: " + string(__DATE__) + " " + SVN_Rev;
case 2: return "Copyright 2001-2011 The MegaGlest Team";
case 2: return "Copyright 2001-2012 The MegaGlest Team";
}
return "";
}
string getAboutString2(int i) {
switch(i) {
case 0: return "Web: http://www.megaglest.org http://glest.org";
case 0: return "Web: http://www.megaglest.org";
case 1: return "Bug reports: " + string(mailString);
case 2: return "Irc: irc://irc.freenode.net/glest";
case 2: return "Irc: irc://irc.freenode.net/megaglest";
}
return "";
}