Fix boolean constants.
This commit is contained in:
parent
1f62f7554d
commit
d4062f31a6
1 changed files with 2 additions and 2 deletions
|
@ -634,9 +634,9 @@ battle_stats evaluate_battle_stats(const gamemap& map,
|
|||
|
||||
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;
|
||||
|
|
Loading…
Add table
Reference in a new issue