From 28d8eb220b7307df4a5c9b90b8cdf6f9cc44f2c8 Mon Sep 17 00:00:00 2001 From: omar Date: Thu, 7 Mar 2019 16:07:16 +0100 Subject: [PATCH] Fix for Android char being unsigned by default (#2408) --- imgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui.cpp b/imgui.cpp index deedfc15..214cfc05 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -10684,7 +10684,7 @@ struct ImGuiDockNodeSettings ImGuiID ID; ImGuiID ParentID; ImGuiID SelectedTabID; - char SplitAxis; + signed char SplitAxis; char Depth; char IsDockSpace; char IsCentralNode;