refactor: remove unused error return in Plane.put_yx and Plane.cursor_move_yx
This commit is contained in:
parent
52dfc1e706
commit
2d5288aa6f
16 changed files with 46 additions and 46 deletions
|
|
@ -124,7 +124,7 @@ pub fn render(self: *Fire) void {
|
|||
self.plane.set_bg_palindex(fire_palette[px_lo]) catch {};
|
||||
_ = self.plane.putchar(px);
|
||||
}
|
||||
self.plane.cursor_move_yx(-1, 0) catch {};
|
||||
self.plane.cursor_move_yx(-1, 0);
|
||||
self.plane.cursor_move_rel(1, 0) catch {};
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue