FullscreenUI: Fix progress bar padding in loading screen

This commit is contained in:
Stenzek 2025-01-30 01:43:22 +10:00
parent 0d9e6bd482
commit 9b6021b79e
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -3173,7 +3173,7 @@ void ImGuiFullscreen::DrawLoadingScreen(std::string_view image, std::string_view
ImGui::TextUnformatted(buf.c_str(), buf.end_ptr());
}
ImGui::SetCursorPosY(ImGui::GetCursorPosY() + 5.0f);
ImGui::SetCursorPosY(ImGui::GetCursorPosY() + 5.0f * scale);
ImGui::ProgressBar(has_progress ?
(static_cast<float>(progress_value) / static_cast<float>(progress_max - progress_min)) :