From fe005b7c5486fc28995dd75b14d1129194070207 Mon Sep 17 00:00:00 2001 From: Mark Vejvoda Date: Thu, 16 Sep 2010 07:00:50 +0000 Subject: [PATCH] - fixed author names --- source/glest_game/facilities/game_util.cpp | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/source/glest_game/facilities/game_util.cpp b/source/glest_game/facilities/game_util.cpp index 15875e102..150a7105b 100644 --- a/source/glest_game/facilities/game_util.cpp +++ b/source/glest_game/facilities/game_util.cpp @@ -23,7 +23,7 @@ using namespace Shared::Util; using namespace Shared::Platform; -namespace Glest{ namespace Game{ +namespace Glest { namespace Game { const string mailString= "contact_game@glest.org"; const string glestVersionString= "v3.3.7-beta1"; @@ -116,16 +116,15 @@ string getAboutString2(int i){ string getTeammateName(int i){ switch(i){ - case 0: return "Marti�o Figueroa"; - case 1: return "Jos� Luis Gonz�lez"; - case 2: return "Tucho Fern�ndez"; - case 3: return "Jos� Zanni"; - case 4: return "F�lix Men�ndez"; + case 0: return "Martiño Figueroa"; + case 1: return "José Luis González"; + case 2: return "Tucho Fernández"; + case 3: return "José Zanni"; + case 4: return "Félix Menéndez"; case 5: return "Marcos Caruncho"; case 6: return "Matthias Braun"; case 7: return "Titus Tscharntke"; - case 8: return "Mark Vejvoda"; - } + case 8: return "Mark Vejvoda"; } return ""; }