cleans up comment

This commit is contained in:
Llywelwyn 2023-08-17 08:37:40 +01:00
parent f5394f10ab
commit 1002844098

View file

@ -39,9 +39,7 @@ pub fn print_log(console: &mut Box<dyn Console>, pos: Point, _descending: bool,
let parts = frag.text.split(""); let parts = frag.text.split("");
for part in parts { for part in parts {
// This is an extremely hacky solution to a problem I don't understand yet. // This is an extremely hacky solution to a problem I don't understand yet.
// It is essentially just a filter to ignore every character which wont be // -- without this, the lines *here* and the line count *above* wont match.
// drawn to the screen. The -2 is to exclude the always-present space, and
// blank character at the end of every fragment.
if part == "" || part == "\\" { if part == "" || part == "\\" {
continue; continue;
} }