Rename win_println -> win_println_indent

This commit is contained in:
James Booth
2016-10-15 17:23:02 +01:00
parent 5488fd6e72
commit 3612270e90
4 changed files with 4 additions and 4 deletions

View File

@@ -113,7 +113,7 @@ cons_show_padded(int pad, const char *const msg, ...)
va_start(arg, msg);
GString *fmt_msg = g_string_new(NULL);
g_string_vprintf(fmt_msg, msg, arg);
win_println(console, pad, fmt_msg->str);
win_println_indent(console, pad, fmt_msg->str);
g_string_free(fmt_msg, TRUE);
va_end(arg);
}