summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/sdl.zig4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sdl.zig b/src/sdl.zig
index f8925a1..6066c03 100644
--- a/src/sdl.zig
+++ b/src/sdl.zig
@@ -1,5 +1,7 @@
const std = @import("std");
-const sdl = @cImport(@cInclude("SDL2/SDL.h"));
+const sdl = @cImport({
+ @cInclude("SDL.h");
+});
const Point = @import("main.zig").Point;
pub const instance = struct {