Merge pull request #489 from coldtobi/fix_imgui_includes

Fix relative include paths, breaking build if systems' libimgui is to…
This commit is contained in:
Robert Beckebans 2020-10-03 16:50:55 +02:00 committed by GitHub
commit f7160d3ead
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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;