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:
Megamouse 2021-07-29 21:31:45 +02:00
parent f39a0a5fbe
commit 6527eef655
1 changed files with 7 additions and 1 deletions

View File

@ -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;
}