Skip to content

Commit 40c4812

Browse files
committed
.
1 parent 7f5aa1f commit 40c4812

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

BaseImGui/main_sdl3_opengl3.zig

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ const L = std.unicode.utf8ToUtf16LeStringLiteral;
1212
// Use full path for all cIncludes:
1313
// @cInclude("C:/zig_microui/lib/SDL2/include/SDL.h");
1414
const im = @cImport({
15-
@cInclude("D:/workbench/Zig/BaseImGui/lib/imgui/cimgui.h");
16-
@cInclude("D:/workbench/Zig/BaseImGui/lib/imgui/cimgui_impl_sdl3.h");
17-
@cInclude("D:/workbench/Zig/BaseImGui/lib/imgui/cimgui_impl_opengl3.h");
15+
@cInclude("lib/imgui/cimgui.h");
16+
@cInclude("lib/imgui/cimgui_impl_sdl3.h");
17+
@cInclude("lib/imgui/cimgui_impl_opengl3.h");
1818
});
1919

2020
const sdl = @cImport({
21-
@cInclude("D:/workbench/Zig/BaseImGui/lib/SDL3/include/SDL.h");
22-
@cInclude("D:/workbench/Zig/BaseImGui/lib/SDL3/include/SDL_opengl.h");
21+
@cInclude("lib/SDL3/include/SDL.h");
22+
@cInclude("lib/SDL3/include/SDL_opengl.h");
2323
});
2424

2525
const ImVec4 = struct {

0 commit comments

Comments
 (0)