From a61dbe36ebf0de55a5d03d996d46a49e20446b68 Mon Sep 17 00:00:00 2001 From: YINGHAI <49584621+YINGHAIDADA@users.noreply.github.com> Date: Sat, 21 Oct 2023 14:49:48 +0800 Subject: [PATCH] Fix the path name about ImGui I'm not sure if the original capitalization will work correctly, but what I am certain of is that ensuring consistency with the original path should not go wrong. --- Dependencies.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dependencies.lua b/Dependencies.lua index b267bef67..dade973bb 100644 --- a/Dependencies.lua +++ b/Dependencies.lua @@ -10,7 +10,7 @@ IncludeDir["Box2D"] = "%{wks.location}/Hazel/vendor/Box2D/include" IncludeDir["filewatch"] = "%{wks.location}/Hazel/vendor/filewatch" IncludeDir["GLFW"] = "%{wks.location}/Hazel/vendor/GLFW/include" IncludeDir["Glad"] = "%{wks.location}/Hazel/vendor/Glad/include" -IncludeDir["ImGui"] = "%{wks.location}/Hazel/vendor/ImGui" +IncludeDir["ImGui"] = "%{wks.location}/Hazel/vendor/imgui" IncludeDir["ImGuizmo"] = "%{wks.location}/Hazel/vendor/ImGuizmo" IncludeDir["glm"] = "%{wks.location}/Hazel/vendor/glm" IncludeDir["entt"] = "%{wks.location}/Hazel/vendor/entt/include"