terminal: can't assert page integrity on screen

This commit is contained in:
Mitchell Hashimoto
2024-09-05 14:40:53 -07:00
parent a6031efa04
commit 693755693a

View File

@ -268,9 +268,6 @@ pub fn assertIntegrity(self: *const Screen) void {
) orelse unreachable;
assert(self.cursor.x == pt.active.x);
assert(self.cursor.y == pt.active.y);
// Assert our current page.
self.cursor.page_pin.page.data.assertIntegrity();
}
}