Skip to content

Commit

Permalink
refactor: rearrange Core fields
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesrocket committed Sep 20, 2024
1 parent cab87fc commit e703c2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.zig
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,15 @@ var lbuf: [4]u8 = undefined;
const Core = struct {
allocator: std.mem.Allocator,
mutex: Mutex = Mutex{},
mode: Mode = Mode.binary,
style: Style = Style.default,
mode: Mode = .binary,
color: Color = .default,
style: Style = .default,
speed: Speed = .fast,
debug: bool = false,
active: bool = false,
rendering: bool = false,
accents: bool = false,
pulse: bool = false,
color: Color = Color.default,
bg: u32 = tb.TB_DEFAULT,
width: u32 = 0,
height: u32 = 0,
Expand Down

0 comments on commit e703c2c

Please sign in to comment.