Squeezed more shops per line in 'O' display.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@872 c06c8d41-db1a-0410-9941-cceddc491573
ANZDEXV6UMEFA352XL55UMMH6HMQJ6XK6U564HMIQURNFHQKDKIAC
// there are at most 5 shops per level, plus 7 chars for
// the level name, plus 4 for the spacing; that makes
// a total of 16 chars per shop or exactly 5 per line.
if ( placecount % 5 == 0 )
disp += "\n";
else
disp += " ";
disp += "\n";
column_count = 0;