mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-12 00:14:20 +00:00
Added ImGuiConfigFlags_None, ImGuiBackendFlags_None for good measure.
This commit is contained in:
parent
1fa2cb8748
commit
4105cc7e97
2 changed files with 4 additions and 2 deletions
|
|
@ -1065,8 +1065,8 @@ ImGuiIO::ImGuiIO()
|
|||
memset(this, 0, sizeof(*this));
|
||||
|
||||
// Settings
|
||||
ConfigFlags = 0x00;
|
||||
BackendFlags = 0x00;
|
||||
ConfigFlags = ImGuiConfigFlags_None;
|
||||
BackendFlags = ImGuiBackendFlags_None;
|
||||
DisplaySize = ImVec2(-1.0f, -1.0f);
|
||||
DeltaTime = 1.0f/60.0f;
|
||||
IniSavingRate = 5.0f;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue