vxfw(Spinner): use different spinner glyphs

This commit is contained in:
Tim Culverhouse 2025-01-02 10:44:07 -06:00
parent df57fc04f3
commit c57a6820f8
No known key found for this signature in database

View file

@ -7,7 +7,7 @@ const Allocator = std.mem.Allocator;
const Spinner = @This();
const frames: []const []const u8 = &.{ "", "", "", "", "", "", "", "", "", "" };
const frames: []const []const u8 = &.{ "", "", "", "", "", "", "", "" };
const time_lapse: u32 = std.time.ms_per_s / 12; // 12 fps
count: std.atomic.Value(u16) = .{ .raw = 0 },