Explorar el Código

Update bindings.odin

pvance hace 3 años
padre
commit
d26cfd2141
Se han modificado 1 ficheros con 5 adiciones y 5 borrados
  1. 5 5
      vendor/glfw/bindings/bindings.odin

+ 5 - 5
vendor/glfw/bindings/bindings.odin

@@ -15,11 +15,11 @@ when ODIN_OS == .Windows {
 	foreign import glfw "system:glfw"
 } else when ODIN_OS == .Darwin {
 	 foreign import glfw { 
-        "../lib/darwin/libglfw3.a",
-        "system:Cocoa.framework",
-        "system:IOKit.framework",
-        "system:OpenGL.framework",
-    }
+        	"../lib/darwin/libglfw3.a",
+        	"system:Cocoa.framework",
+        	"system:IOKit.framework",
+        	"system:OpenGL.framework",
+    	}
 } else {
 	foreign import glfw "system:glfw"
 }