disable imgui log and ini
This commit is contained in:
parent
5b7dc60365
commit
d4bd3bbc8a
1 changed files with 2 additions and 0 deletions
|
@ -4,6 +4,8 @@ b8 init_imgui(GLFWwindow* window) {
|
||||||
ImGui::CreateContext();
|
ImGui::CreateContext();
|
||||||
ImGuiIO& io = ImGui::GetIO(); (void) io;
|
ImGuiIO& io = ImGui::GetIO(); (void) io;
|
||||||
io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard;
|
io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard;
|
||||||
|
io.IniFilename = nullptr;
|
||||||
|
io.LogFilename = nullptr;
|
||||||
|
|
||||||
ImGui::StyleColorsDark();
|
ImGui::StyleColorsDark();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue