Revert "Fall back to dfout_C if set before stderr.log"

Makes stuff go to stdout.log instead

This reverts commit 148b5495cc.
develop
lethosor 2020-04-11 01:43:06 -04:00
parent 148b5495cc
commit 44be99388e
1 changed files with 1 additions and 4 deletions

@ -903,10 +903,7 @@ void Console::add_text(color_value color, const std::string &text)
if (inited)
d->print_text(color, text);
else
{
FILE *out = d->dfout_C ? d->dfout_C : stderr;
fwrite(text.data(), 1, text.size(), out);
}
fwrite(text.data(), 1, text.size(), stderr);
}
int Console::get_columns(void)