From 8884c32e78b5fba33b2c977a988ff08113e1ecff Mon Sep 17 00:00:00 2001 From: Titus Tscharntke Date: Thu, 26 Aug 2010 23:01:55 +0000 Subject: [PATCH] version string "light" --- source/glest_game/facilities/game_util.cpp | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/source/glest_game/facilities/game_util.cpp b/source/glest_game/facilities/game_util.cpp index 390d47ac..000fd1c0 100644 --- a/source/glest_game/facilities/game_util.cpp +++ b/source/glest_game/facilities/game_util.cpp @@ -1,7 +1,7 @@ // ============================================================== // This file is part of Glest (www.glest.org) // -// Copyright (C) 2001-2008 Martiño Figueroa +// Copyright (C) 2001-2008 Marti�o Figueroa // // You can redistribute this code and/or modify it under // the terms of the GNU General Public License as published @@ -84,13 +84,12 @@ version += " [DEBUG]"; } string getNetworkVersionString() { - string version = glestVersionString + " built: " + string(__DATE__) + " " + string(__TIME__) + " " + SVN_Rev; - version += " Compiler " + getCompilerNameString(); + string version = glestVersionString+"-"+getCompilerNameString()+"-"+getCompileDateTime(); return version; } string getCompileDateTime() { - return string(__DATE__) + " " + SVN_Rev + " " + string(__TIME__); + return string(__DATE__) + " " + string(__TIME__); } string getNetworkPlatformFreeVersionString() { @@ -117,11 +116,11 @@ 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";