From 39d50466c9f696fafe8df9f4f37048628604342e Mon Sep 17 00:00:00 2001 From: Rekai Musuka Date: Thu, 22 Dec 2022 13:18:59 -0600 Subject: [PATCH] chore: update min zig version --- README.md | 4 ++-- build.zig | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index adcdd13..0586f8d 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ This is a simple (read: incomplete) for-fun long-term project. I hope to get "mo ### TODO -- [ ] Affine Sprites +- [x] Affine Sprites - [ ] Windowing (see [this branch](https://git.musuka.dev/paoda/zba/src/branch/window)) - [ ] Audio Resampler (Having issues with SDL2's) - [ ] Immediate Mode GUI @@ -77,7 +77,7 @@ arm7wrestler GBA Fixed | [destoer](https://github.com/destoer) ## Compiling -Most recently built on Zig [0.11.0-dev.368+1829b6eab](https://github.com/ziglang/zig/tree/1829b6eab) +Most recently built on Zig [v0.11.0-dev.926+266e2e9a3](https://github.com/ziglang/zig/tree/266e2e9a3) ### Dependencies diff --git a/build.zig b/build.zig index ccfb38a..09cf61c 100644 --- a/build.zig +++ b/build.zig @@ -4,7 +4,7 @@ const Sdk = @import("lib/SDL.zig/Sdk.zig"); pub fn build(b: *std.build.Builder) void { // Minimum Zig Version - const min_ver = std.SemanticVersion.parse("0.11.0-dev.323+30eb2a175") catch return; // https://github.com/ziglang/zig/commit/30eb2a175 + const min_ver = std.SemanticVersion.parse("0.11.0-dev.926+266e2e9a3") catch return; // https://github.com/ziglang/zig/commit/266e2e9a3 if (builtin.zig_version.order(min_ver).compare(.lt)) { std.log.err("{s}", .{b.fmt("Zig v{} does not meet the minimum version requirement. (Zig v{})", .{ builtin.zig_version, min_ver })}); std.os.exit(1);