Merge branch 'KFS-3' of github.com:jzck/kernel into KFS-3

This commit is contained in:
Jack Halford 2018-03-13 15:43:05 +01:00
commit e73d3e175a

View file

@ -180,6 +180,7 @@ impl Writer {
for col in 0..BUFFER_COLS/2 {
self.buffer[((BUFFER_ROWS - 1) * BUFFER_COLS) + (col * 2)] = b' ';
self.buffer[((BUFFER_ROWS - 1) * BUFFER_COLS) + (col * 2) + 1] = 0;
}
self.buffer_pos = (BUFFER_ROWS - 1) * BUFFER_COLS;