- modify about screen to show copyright for Glest Team till 2010

This commit is contained in:
SoftCoder 2014-01-30 17:45:24 -08:00
parent b4807ed169
commit c5a938e31b
2 changed files with 3 additions and 2 deletions

View File

@ -190,7 +190,8 @@ string getAboutString1(int i) {
switch(i) {
case 0: return "MegaGlest " + glestVersionString + " (" + "Shared Library " + sharedLibVersionString + ")";
case 1: return "Built: " + string(__DATE__) + " " + GIT_Rev;
case 2: return "Copyright 2001-2012 The MegaGlest Team";
case 2: return "Copyright 2001-2010 The Glest Team";
case 3: return "Copyright 2010-2014 The MegaGlest Team";
}
return "";
}

View File

@ -28,7 +28,7 @@ namespace Glest{ namespace Game{
class MenuStateAbout: public MenuState{
public:
static const int aboutStringCount1= 3;
static const int aboutStringCount1= 4;
static const int aboutStringCount2= 3;
static const int teammateCount= 9;
static const int teammateTopLineCount= 5;