git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@703 c06c8d41-db1a-0410-9941-cceddc491573
OFAVQUIGMKBKXMEMRMNPHJK75RNXJVN3OYWNBKCT6EUUAG6U23DAC
// This will force the cursor down to the next line.
void clear_to_end_of_line()
{
const int pos = wherex();
const int cols = get_number_of_cols();
if (pos <= cols)
cprintf("%*s", cols - pos + 1, "");
}