1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-03-25 21:38:59 +02:00

Fixed some typos.

This commit is contained in:
Frank Zago 2009-10-31 16:33:11 +00:00
parent 359ca49f26
commit fe80e8b553
2 changed files with 2 additions and 2 deletions

@ -96,7 +96,7 @@ bool CCallback::upgradeCreature(const CArmedInstance *obj, int stackPos, int new
} }
void CCallback::endTurn() void CCallback::endTurn()
{ {
tlog5 << "Player " << (unsigned)player << " end his turn." << std::endl; tlog5 << "Player " << (unsigned)player << " ended his turn." << std::endl;
EndTurn pack; EndTurn pack;
sendRequest(&pack); //report that we ended turn sendRequest(&pack); //report that we ended turn
} }

@ -318,7 +318,7 @@ extern DLL_EXPORT CLogger<3> tlog3; //yellow - minor warnings
extern DLL_EXPORT CLogger<4> tlog4; //white - detailed log info extern DLL_EXPORT CLogger<4> tlog4; //white - detailed log info
extern DLL_EXPORT CLogger<5> tlog5; //gray - minor log info extern DLL_EXPORT CLogger<5> tlog5; //gray - minor log info
//XXX pls dont - 'debug macros' are usually more trubble then its worth //XXX pls dont - 'debug macros' are usually more trouble than it's worth
#define HANDLE_EXCEPTION \ #define HANDLE_EXCEPTION \
catch (const std::exception& e) { \ catch (const std::exception& e) { \
tlog1 << e.what() << std::endl; \ tlog1 << e.what() << std::endl; \