Skip to content

Commit

Permalink
fix: glfw darwin aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
load1n9 committed Mar 15, 2023
1 parent 8e2142d commit 850810c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/platform/glfw/ffi.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { cachedir } from "https://deno.land/x/[email protected]/directories.ts";
import darwin from "https://glfw-binaries.deno.dev/3.4.0-patch1/glfw3_darwin.js";
import darwinAarch64 from "https://glfw-binaries.deno.dev/3.4.0-patch1/glfw3_darwin_aarch64.js";
import windows from "https://glfw-binaries.deno.dev/3.4.0-patch1/glfw3_windows.js";
import linux from "https://glfw-binaries.deno.dev/3.4.0-patch1/glfw3_linux.js";
import darwin from "https://glfw-binaries.deno.dev/3.4.0-patch2/glfw3_darwin.js";
import darwinAarch64 from "https://glfw-binaries.deno.dev/3.4.0-patch2/glfw3_darwin_aarch64.js";
import windows from "https://glfw-binaries.deno.dev/3.4.0-patch2/glfw3_windows.js";
import linux from "https://glfw-binaries.deno.dev/3.4.0-patch2/glfw3_linux.js";

export const GLFW_VERSION = "3.4.0";

Expand Down

0 comments on commit 850810c

Please sign in to comment.