chore: update min ver. to v0.11.0-dev.2934+1b432072b

This commit is contained in:
2023-05-02 00:08:51 -05:00
parent a5e636d9c5
commit c677957725
13 changed files with 29 additions and 27 deletions

View File

@@ -260,7 +260,7 @@ pub const FrameBuffer = struct {
pub fn init(allocator: Allocator, comptime len: comptime_int) !Self {
const buf = try allocator.alloc(u8, len * 2);
std.mem.set(u8, buf, 0);
@memset(buf, 0);
return .{
// Front and Back Framebuffers
@@ -272,7 +272,7 @@ pub const FrameBuffer = struct {
}
pub fn reset(self: *Self) void {
std.mem.set(u8, self.buf, 0);
@memset(self.buf, 0);
self.current = 0;
}