fix: minor home screen fixes

This commit is contained in:
CJ van den Berg 2025-06-03 19:16:22 +02:00
parent 609bc9d257
commit b9fbd6825d
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 10 additions and 1 deletions

View file

@ -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);
}