From c5a938e31bafc847e1a9b2dccf393c1d3b8d210f Mon Sep 17 00:00:00 2001 From: SoftCoder Date: Thu, 30 Jan 2014 17:45:24 -0800 Subject: [PATCH] - modify about screen to show copyright for Glest Team till 2010 --- source/glest_game/facilities/game_util.cpp | 3 ++- source/glest_game/menu/menu_state_about.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/source/glest_game/facilities/game_util.cpp b/source/glest_game/facilities/game_util.cpp index a6180b30..55f8e3ec 100644 --- a/source/glest_game/facilities/game_util.cpp +++ b/source/glest_game/facilities/game_util.cpp @@ -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 ""; } diff --git a/source/glest_game/menu/menu_state_about.h b/source/glest_game/menu/menu_state_about.h index 859dd229..efa6c0ef 100644 --- a/source/glest_game/menu/menu_state_about.h +++ b/source/glest_game/menu/menu_state_about.h @@ -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;