fix: minor home screen fixes
This commit is contained in:
parent
609bc9d257
commit
b9fbd6825d
3 changed files with 10 additions and 1 deletions
|
@ -217,6 +217,10 @@ pub fn putstr_unicode(self: *Plane, text: []const u8) !usize {
|
|||
return result;
|
||||
}
|
||||
|
||||
pub fn putchar(self: *Plane, ecg: []const u8) void {
|
||||
self.write_cell(@intCast(self.col), @intCast(self.row), ecg);
|
||||
}
|
||||
|
||||
pub fn putc(self: *Plane, cell: *const Cell) !usize {
|
||||
return self.putc_yx(@intCast(self.row), @intCast(self.col), cell);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue