From e9453ae7d1b07b7d667207e72b80227a08d5e1e9 Mon Sep 17 00:00:00 2001 From: Mark Vejvoda Date: Sun, 18 Apr 2010 06:01:20 +0000 Subject: [PATCH] Updated version # for current development --- mk/linux/configure.ac | 2 +- source/glest_game/facilities/game_util.cpp | 2 +- source/glest_game/game/commander.cpp | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mk/linux/configure.ac b/mk/linux/configure.ac index 959f5b6cb..2a06d7887 100644 --- a/mk/linux/configure.ac +++ b/mk/linux/configure.ac @@ -4,7 +4,7 @@ #---------------------------------------------------------------------------- AC_PREREQ([2.54]) -AC_INIT([megaglest], [3.3.4], [matze@braunis.de]) +AC_INIT([megaglest], [3.3.5], [matze@braunis.de]) AC_CONFIG_SRCDIR([mk/jam/build.jam]) AC_CONFIG_AUX_DIR([mk/autoconf]) diff --git a/source/glest_game/facilities/game_util.cpp b/source/glest_game/facilities/game_util.cpp index 309620373..89d498570 100644 --- a/source/glest_game/facilities/game_util.cpp +++ b/source/glest_game/facilities/game_util.cpp @@ -25,7 +25,7 @@ using namespace Shared::Platform; namespace Glest{ namespace Game{ const string mailString= "contact_game@glest.org"; -const string glestVersionString= "v3.3.4"; +const string glestVersionString= "v3.3.5-dev"; string getCrashDumpFileName(){ return "glest"+glestVersionString+".dmp"; diff --git a/source/glest_game/game/commander.cpp b/source/glest_game/game/commander.cpp index 75b809b08..8dd88b11b 100644 --- a/source/glest_game/game/commander.cpp +++ b/source/glest_game/game/commander.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 Martio Figueroa // // You can redistribute this code and/or modify it under // the terms of the GNU General Public License as published @@ -359,8 +359,8 @@ Command* Commander::buildCommand(const NetworkCommand* networkCommand) const{ if(ct == NULL) { char szBuf[1024]=""; - sprintf(szBuf,"In [%s::%s - %d] Can not find command type with id = %d in unit = %d [%s]. Game out of synch.", - __FILE__,__FUNCTION__,__LINE__,networkCommand->getCommandTypeId(),unit->getId(), unit->getDesc().c_str()); + sprintf(szBuf,"In [%s::%s - %d] Can not find command type with id = %d in unit = %d [%s][%s]. Game out of synch.", + __FILE__,__FUNCTION__,__LINE__,networkCommand->getCommandTypeId(),unit->getId(), unit->getFullName().c_str(),unit->getDesc().c_str()); throw runtime_error(szBuf); }