box-select: Fix "tiles to fill" count

develop
lethosor 2015-11-06 20:04:32 -05:00
parent d1cd5df314
commit 3ebe59859b
1 changed files with 2 additions and 2 deletions

@ -1120,7 +1120,7 @@ struct jobutils_hook : public df::viewscreen_dwarfmodest
{
++y;
OutputString(COLOR_BROWN, x, y, "Construction:", true, left_margin);
OutputString(COLOR_WHITE, x, y, int_to_string(valid_building_sites.size() + 1) + " tiles to fill", true, left_margin);
OutputString(COLOR_WHITE, x, y, int_to_string(valid_building_sites.size()) + " tiles to fill", true, left_margin);
}
}
}