git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4045 c06c8d41-db1a-0410-9941-cceddc491573
APWL24FMDRVA6NXFFCGNP3Z3FJJ6WFSRWO4ESHEOVT7Z5JGXPUQQC
#if BOTTOM_JUSTIFY_MONSTER_LIST
// Count how many groups of monsters there are
unsigned int lines_needed = mons.size();
for (unsigned int i=1; i < mons.size(); i++)
if (! monster_pane_info::less_than(mons[i-1], mons[i]))
-- lines_needed;
const int skip_lines = std::max<int>(0, crawl_view.mlistsz.y-lines_needed);
#else
const int skip_lines = 0;
#endif