added new line to file/console_output::render

This commit is contained in:
2024-07-06 22:00:34 -04:00
parent 84bc342eff
commit 3d7484351f
2 changed files with 4 additions and 0 deletions

View File

@ -70,6 +70,8 @@ void console_output::render() {
out << get_code(contents[idx])
<< (char)(contents[idx] ? contents[idx] : ' ');
}
out << std::endl;
}
void console_output::print_char(const position &pos, const char ch,

View File

@ -12,6 +12,8 @@ void file_output::render() {
out << (char)(contents[idx] ? contents[idx] : ' ');
}
out << std::endl;
}
void file_output::print_char(const position &pos, const char ch,