terminal2: remove rowoffset

This commit is contained in:
Mitchell Hashimoto
2024-03-05 13:49:27 -08:00
parent 6917bfa159
commit 8745bff3a9
2 changed files with 53 additions and 185 deletions

View File

@@ -854,7 +854,7 @@ pub fn dumpString(
var iter = self.pages.rowIterator(tl, null);
while (iter.next()) |row_offset| {
const rac = row_offset.rowAndCell(0);
const rac = row_offset.rowAndCell();
const cells = cells: {
const cells: [*]pagepkg.Cell = @ptrCast(rac.cell);
break :cells cells[0..self.pages.cols];