mirror of
https://github.com/cimgui/cimgui.git
synced 2025-08-10 20:08:31 +01:00
Fixed for LuaJIT C definition parser
The parser was indicating there was an error because "struct" was missing
This commit is contained in:

committed by
Stephan Dilly

parent
b0cc7a2275
commit
90f62f1fc9
@@ -361,7 +361,7 @@ struct ImGuiStyle
|
||||
struct ImVec2 WindowPadding;
|
||||
float WindowRounding;
|
||||
float WindowBorderSize;
|
||||
ImVec2 WindowMinSize;
|
||||
struct ImVec2 WindowMinSize;
|
||||
struct ImVec2 WindowTitleAlign;
|
||||
float ChildRounding;
|
||||
float ChildBorderSize;
|
||||
@@ -447,7 +447,7 @@ struct ImGuiIO
|
||||
bool MouseDownOwned[5];
|
||||
float MouseDownDuration[5];
|
||||
float MouseDownDurationPrev[5];
|
||||
ImVec2 MouseDragMaxDistanceAbs[5];
|
||||
struct ImVec2 MouseDragMaxDistanceAbs[5];
|
||||
float MouseDragMaxDistanceSqr[5];
|
||||
float KeysDownDuration[512];
|
||||
float KeysDownDurationPrev[512];
|
||||
|
Reference in New Issue
Block a user