From 5d21b670f4bdb59d6ec0a40ec50bad9260ce9550 Mon Sep 17 00:00:00 2001 From: TheTechnician27 Date: Mon, 10 Feb 2025 23:48:10 -0600 Subject: [PATCH] Qt: End memcard conversion progress at 100% instead of 99% --- pcsx2-qt/Settings/MemoryCardConvertWorker.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pcsx2-qt/Settings/MemoryCardConvertWorker.cpp b/pcsx2-qt/Settings/MemoryCardConvertWorker.cpp index ec1d620496..9aef189a15 100644 --- a/pcsx2-qt/Settings/MemoryCardConvertWorker.cpp +++ b/pcsx2-qt/Settings/MemoryCardConvertWorker.cpp @@ -121,7 +121,7 @@ bool MemoryCardConvertWorker::ConvertToFolder(const std::string& srcFileName, co // Set progress bar to the literal number of bytes in the memcard. // Plus two because there is a lag period after the Save calls complete // where the progress bar stalls out; this lets us stop the progress bar - // just shy of 50 and 100% so it seems like its still doing some work. + // just shy of 50 and 100% so it seems like it's still doing some work. this->SetProgressRange((sourceBuffer.size() * 2) + 2); this->SetProgressValue(0); @@ -161,5 +161,7 @@ bool MemoryCardConvertWorker::ConvertToFolder(const std::string& srcFileName, co this->IncrementProgressValue(); } + this->IncrementProgressValue(); + return true; }