Zig 0.10 compatibility
This commit is contained in:
parent
b6c69abdf5
commit
510213bcf3
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ Since [learning zig](https://www.adyxax.org/blog/2022/08/22/learning-the-zig-pro
|
|||
|
||||
## Dependencies
|
||||
|
||||
zig is required. Only zig version >= 0.9.1 on linux amd64 (Gentoo) is being regularly tested.
|
||||
zig is required. Only zig version >= 0.10.0 on linux amd64 (Gentoo) is being regularly tested.
|
||||
|
||||
On top of that the wasm4 runtime (which I installed from npm) is required, version >= 2.5.3.
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ const w4 = @import("wasm4.zig");
|
|||
pub const Buttons = packed struct {
|
||||
x: bool = false,
|
||||
y: bool = false,
|
||||
_: u2,
|
||||
_: u2 = 0,
|
||||
left: bool = false,
|
||||
right: bool = false,
|
||||
up: bool = false,
|
||||
|
|
Loading…
Add table
Reference in a new issue