mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-16 03:38:38 +12: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 changed files with 7 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
#include "stdafx.h"
|
#include "stdafx.h"
|
||||||
#include "Utilities/JIT.h"
|
#include "Utilities/JIT.h"
|
||||||
#include "Utilities/StrUtil.h"
|
#include "Utilities/StrUtil.h"
|
||||||
#include "Crypto/sha1.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);
|
ppu_log.success("LLVM: Module exists: %s", obj_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!check_only)
|
||||||
|
{
|
||||||
|
// Update progress dialog
|
||||||
|
g_progr_pdone++;
|
||||||
|
}
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue