mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-20 23:50:46 +01:00
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.
This commit is contained in:
parent
f39a0a5fbe
commit
6527eef655
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue