Normalize file path first before printing it in spinner animation

This commit is contained in:
irisz64
2025-12-18 08:48:17 +01:00
parent ebcafd5b86
commit db2f37ad6d

View File

@@ -368,7 +368,7 @@ void KaizenGui::RenderUI() {
ImGui::SameLine();
ImGui::PushFont(nullptr, ImGui::GetStyle().FontSizeBase * 2.f);
ImGui::Text("Loading \"%s\"...", fs::path(fileToLoad).stem().c_str());
ImGui::Text("Loading \"%s\"...", fs::path(fileToLoad).filename().string().c_str());
ImGui::PopFont();
ImGui::End();