shithub: cstory

Download patch

ref: 54797a05f8563ebd6ad7d85cabadc30a3b94686a
parent: ef00bbcdd421fa9e6bd9e554ccd76e3635b98f56
author: Clownacy <Clownacy@users.noreply.github.com>
date: Thu Apr 2 18:14:36 EDT 2020

Do not create `imgui.ini`

--- a/DoConfig/DoConfig.cpp
+++ b/DoConfig/DoConfig.cpp
@@ -75,6 +75,8 @@
 
 					IMGUI_CHECKVERSION();
 					ImGui::CreateContext();
+					ImGuiIO &io = ImGui::GetIO();
+					io.IniFilename = NULL;	// Disable `imgui.ini`
 
 					ImGui_ImplGlfw_InitForOpenGL(window, true);
 					ImGui_ImplOpenGL3_Init(glsl_version);