CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: ott <[EMAIL PROTECTED]> 05/05/10 21:07:43
Modified files:
src : actions.cpp
Log message:
Fix boolean constants.
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/actions.cpp.diff?tr1=1.215&tr2=1.216&r1=text&r2=text
Patches:
Index: wesnoth/src/actions.cpp
diff -u wesnoth/src/actions.cpp:1.215 wesnoth/src/actions.cpp:1.216
--- wesnoth/src/actions.cpp:1.215 Tue May 10 06:55:11 2005
+++ wesnoth/src/actions.cpp Tue May 10 21:07:43 2005
@@ -1,4 +1,4 @@
-/* $Id: actions.cpp,v 1.215 2005/05/10 06:55:11 ott Exp $ */
+/* $Id: actions.cpp,v 1.216 2005/05/10 21:07:43 ott Exp $ */
/*
Copyright (C) 2003 by David White <[EMAIL PROTECTED]>
Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -634,9 +634,9 @@
for(int n = 1; n <= maxrounds*maximum<int>(swa,swb); ++n) {
P1 += pr_kills_during(hpa, dmga, pa, swa,
- hpb, dmgb, pb, swb, n, FALSE);
+ hpb, dmgb, pb, swb, n, false);
P2 += pr_kills_during(hpb, dmgb, pb, swb,
- hpa, dmga, pa, swa, n, TRUE);
+ hpa, dmga, pa, swa, n, true);
}
std::stringstream str;