summaryrefslogtreecommitdiff
path: root/imgui
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2024-03-14 19:38:21 +0100
committerAldrik Ramaekers <aldrikboy@gmail.com>2024-03-14 19:38:21 +0100
commitf2f44dfce609b7f5b228e61829d454b5c8c2734a (patch)
treea792158a6e946b9f2ed0769c6da1df9b4e93c356 /imgui
parentf2b44f582dbb9d898e6aad1db6919b5a295815be (diff)
more static analysis fixes
Diffstat (limited to 'imgui')
-rw-r--r--imgui/backends/imgui_impl_win32.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/imgui/backends/imgui_impl_win32.cpp b/imgui/backends/imgui_impl_win32.cpp
index 73ed700..808f132 100644
--- a/imgui/backends/imgui_impl_win32.cpp
+++ b/imgui/backends/imgui_impl_win32.cpp
@@ -16,9 +16,9 @@
// - Documentation https://dearimgui.com/docs (same as your local docs/ folder).
// - Introduction, links and more at the top of imgui.cpp
-#include "imgui.h"
+#include <imgui.h>
#ifndef IMGUI_DISABLE
-#include "imgui_impl_win32.h"
+#include <imgui_impl_win32.h>
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif