fix: re-eanble differential updates in vaxis backend

This commit is contained in:
CJ van den Berg 2024-05-18 16:47:34 +02:00
parent ced45d50e4
commit 0707b52d8a

View file

@ -80,7 +80,6 @@ pub fn run(self: *Self) !void {
} }
pub fn render(self: *Self) !void { pub fn render(self: *Self) !void {
self.vx.queueRefresh(); // FIXME: differential updates may break if we overflow the output buffer and get a WouldBlock
return self.vx.render(); return self.vx.render();
} }