From 16aba2ffdacc203b2b43237cc25fbde3a3af6354 Mon Sep 17 00:00:00 2001 From: erysdren Date: Mon, 14 Oct 2024 16:39:40 -0500 Subject: [PATCH] don't save ini or log --- source/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/main.cpp b/source/main.cpp index 564765a..eebb3ad 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -58,6 +58,8 @@ int main(int argc, char **argv) ImGuiIO &io = ImGui::GetIO(); io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; + io.IniFilename = nullptr; + io.LogFilename = nullptr; ImGui::StyleColorsDark();