mirror of
https://github.com/RGBCube/DOOM-fire-zig
synced 2025-07-28 01:27:44 +00:00
Fix compilation
This commit is contained in:
parent
fa035dc29d
commit
9b12a6b282
2 changed files with 5 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
|
|
||||||
pub fn build(b: *std.build.Builder) void {
|
pub fn build(b: *std.Build) void {
|
||||||
// Standard target options allows the person running `zig build` to choose
|
// Standard target options allows the person running `zig build` to choose
|
||||||
// what target to build for. Here we do not override the defaults, which
|
// what target to build for. Here we do not override the defaults, which
|
||||||
// means any target is allowed, and the default is native. Other options
|
// means any target is allowed, and the default is native. Other options
|
||||||
|
|
|
@ -577,7 +577,7 @@ pub fn showDoomFire() void {
|
||||||
defer freeBuf();
|
defer freeBuf();
|
||||||
|
|
||||||
//when there is an ez way to poll for key stroke...do that. for now, ctrl+c!
|
//when there is an ez way to poll for key stroke...do that. for now, ctrl+c!
|
||||||
var ok = true;
|
const ok = true;
|
||||||
while (ok) {
|
while (ok) {
|
||||||
|
|
||||||
//update fire buf
|
//update fire buf
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue