From 71ceb038233ab37fef386a800a88934659057c0e Mon Sep 17 00:00:00 2001 From: scawful Date: Fri, 20 Oct 2023 11:36:36 -0400 Subject: [PATCH] Remove imgui_internal.h where unneeded --- src/app/core/constants.h | 2 ++ src/app/gui/input.h | 1 - src/app/gui/style.h | 1 - 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/core/constants.h b/src/app/core/constants.h index 5c433306..9b61026e 100644 --- a/src/app/core/constants.h +++ b/src/app/core/constants.h @@ -5,6 +5,8 @@ #include "absl/strings/string_view.h" +#define IMGUI_DEFINE_MATH_OPERATORS + #define BASIC_BUTTON(w) if (ImGui::Button(w)) #define TAB_BAR(w) if (ImGui::BeginTabBar(w)) { diff --git a/src/app/gui/input.h b/src/app/gui/input.h index a1c5c8e8..3a079edb 100644 --- a/src/app/gui/input.h +++ b/src/app/gui/input.h @@ -2,7 +2,6 @@ #define YAZE_APP_CORE_INPUT_H #include -#include #include #include diff --git a/src/app/gui/style.h b/src/app/gui/style.h index ca6e4249..f27b774b 100644 --- a/src/app/gui/style.h +++ b/src/app/gui/style.h @@ -2,7 +2,6 @@ #define YAZE_APP_CORE_STYLE_H #include -#include #include "absl/strings/string_view.h"