1
0
mirror of https://github.com/ocornut/imgui.git synced 2025-02-20 20:41:10 +01:00

Fix for Android char being unsigned by default (#2408)

This commit is contained in:
omar 2019-03-07 16:07:16 +01:00
parent 0a6c5bc234
commit 28d8eb220b

View File

@ -10684,7 +10684,7 @@ struct ImGuiDockNodeSettings
ImGuiID ID;
ImGuiID ParentID;
ImGuiID SelectedTabID;
char SplitAxis;
signed char SplitAxis;
char Depth;
char IsDockSpace;
char IsCentralNode;