From cb5a07cd647b3152a05815fc90203424c4c56434 Mon Sep 17 00:00:00 2001 From: Ciremun Date: Fri, 19 Apr 2024 01:58:20 +0300 Subject: [PATCH] wrap config path --- freedom/ui/ui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freedom/ui/ui.cpp b/freedom/ui/ui.cpp index edc2b19..073ff69 100644 --- a/freedom/ui/ui.cpp +++ b/freedom/ui/ui.cpp @@ -615,7 +615,7 @@ void draw_debug_log() ImGui::Text("Selected Mods: %s", selected_mods_ptr ? mods_to_string(*selected_mods_ptr, selected_mods) : "Unknown"); ImGui::Text("Replay Mode: %s", is_replay_mode(osu_manager_ptr) ? "Yes" : "No"); ImGui::Text("Prepared Methods: %d", prepared_methods_count); - ImGui::Text("config.ini path: %s", ImGui::GetIO().IniFilename); + ImGui::TextWrapped("config.ini path: %s", ImGui::GetIO().IniFilename); ImGui::EndChild(); // debug_game ImGui::EndTabItem(); }