From c24d1fd4a48f61c56c303f022f8940566d8547b5 Mon Sep 17 00:00:00 2001 From: Tobias Frost Date: Tue, 25 Aug 2020 15:12:27 +0200 Subject: [PATCH] Fix relative include paths, breaking build if systems' libimgui is to be used. --- neo/renderer/GuiModel.cpp | 2 +- neo/ui/DeviceContext.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/neo/renderer/GuiModel.cpp b/neo/renderer/GuiModel.cpp index d542c809..2e0e5917 100644 --- a/neo/renderer/GuiModel.cpp +++ b/neo/renderer/GuiModel.cpp @@ -31,7 +31,7 @@ If you have questions concerning this license or the applicable additional terms #include "precompiled.h" #include "RenderCommon.h" -#include "../../libs/imgui/imgui.h" +#include "libs/imgui/imgui.h" const float idGuiModel::STEREO_DEPTH_NEAR = 0.0f; const float idGuiModel::STEREO_DEPTH_MID = 0.5f; diff --git a/neo/ui/DeviceContext.cpp b/neo/ui/DeviceContext.cpp index 41486638..f1291477 100644 --- a/neo/ui/DeviceContext.cpp +++ b/neo/ui/DeviceContext.cpp @@ -31,7 +31,7 @@ If you have questions concerning this license or the applicable additional terms #include "DeviceContext.h" -#include "../../libs/imgui/imgui.h" +#include "libs/imgui/imgui.h" #include "../renderer/GuiModel.h" extern idCVar in_useJoystick;