update to Zig 2024.10-mach (helps hexops/mach#1276)
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
parent
55e6abda61
commit
26c5cb5d60
28 changed files with 192 additions and 203 deletions
|
|
@ -28,7 +28,7 @@ frame_count: usize,
|
|||
frame_rate: usize,
|
||||
num_sprites_spawned: usize,
|
||||
score: usize,
|
||||
rand: std.rand.DefaultPrng,
|
||||
rand: std.Random.DefaultPrng,
|
||||
time: f32,
|
||||
allocator: std.mem.Allocator,
|
||||
pipeline: mach.EntityID,
|
||||
|
|
@ -148,7 +148,7 @@ fn init(
|
|||
.frame_rate = 0,
|
||||
.num_sprites_spawned = 0,
|
||||
.score = 0,
|
||||
.rand = std.rand.DefaultPrng.init(1337),
|
||||
.rand = std.Random.DefaultPrng.init(1337),
|
||||
.time = 0,
|
||||
.allocator = allocator,
|
||||
.pipeline = pipeline,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue