From 6527eef655a5b7bc99465eacf7dd7a7fcb48abd2 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Thu, 29 Jul 2021 21:31:45 +0200 Subject: [PATCH] System: add progress update on existing modules This could cause dialogs to seemingly finish at e.g. 50/100 modules because the existing modules weren't accounted for. --- rpcs3/Emu/Cell/PPUThread.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/PPUThread.cpp b/rpcs3/Emu/Cell/PPUThread.cpp index 60882f0674..d5cab9df32 100644 --- a/rpcs3/Emu/Cell/PPUThread.cpp +++ b/rpcs3/Emu/Cell/PPUThread.cpp @@ -1,4 +1,4 @@ -#include "stdafx.h" +#include "stdafx.h" #include "Utilities/JIT.h" #include "Utilities/StrUtil.h" #include "Crypto/sha1.h" @@ -3031,6 +3031,12 @@ bool ppu_initialize(const ppu_module& info, bool check_only) ppu_log.success("LLVM: Module exists: %s", obj_name); } + if (!check_only) + { + // Update progress dialog + g_progr_pdone++; + } + continue; }