That is what is says in \core\script.c\script_console_draw().
Try changing the colours to something else.
I don't understand, this is what it actually says:
void script_console_draw() {
int i,c,l;
for(c = 0; c < script_con_num_lines; c) {
i=script_con_line_index(script_con_start_line c);
l=strlen(script_console_buf[i]);
draw_txt_string(SCRIPT_CONSOLE_X, SCRIPT_CONSOLE_Y SCRIPT_CONSOLE_NUM_LINES-script_con_num_lines c, script_console_buf[i], MAKE_COLOR(COLOR_BG, COLOR_FG));
for (; l<SCRIPT_CONSOLE_LINE_LENGTH; l)
draw_txt_char(SCRIPT_CONSOLE_X l, SCRIPT_CONSOLE_Y SCRIPT_CONSOLE_NUM_LINES-script_con_num_lines c, ' ', MAKE_COLOR(COLOR_BG, COLOR_FG));
}
}
No comments there!
I have already tried changing COLOR_BG, COLOR_FG as in my original post.