CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: ott <[EMAIL PROTECTED]> 05/05/14 07:56:47
Modified files:
src : actions.cpp
Log message:
fix display glitch with %-to-kill
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/actions.cpp.diff?tr1=1.220&tr2=1.221&r1=text&r2=text
Patches:
Index: wesnoth/src/actions.cpp
diff -u wesnoth/src/actions.cpp:1.220 wesnoth/src/actions.cpp:1.221
--- wesnoth/src/actions.cpp:1.220 Fri May 13 19:06:36 2005
+++ wesnoth/src/actions.cpp Sat May 14 07:56:47 2005
@@ -1,4 +1,4 @@
-/* $Id: actions.cpp,v 1.220 2005/05/13 19:06:36 ott Exp $ */
+/* $Id: actions.cpp,v 1.221 2005/05/14 07:56:47 ott Exp $ */
/*
Copyright (C) 2003 by David White <[EMAIL PROTECTED]>
Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -647,7 +647,7 @@
std::stringstream str;
if (P1 < 0.005 && P2 < 0.005) {
- str << _("(both should survive)");
+ str << _("(both should survive)") << EMPTY_COLUMN;
} else {
str << _("% Pr[kills/killed by/both survive]")
<< EMPTY_COLUMN << (int)(P1*100+0.5)