mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 13:31:27 +12:00
PPU LLVM: Fixup pdone count
This commit is contained in:
parent
4b4ffba080
commit
37ba19776a
1 changed files with 4 additions and 2 deletions
|
@ -4569,7 +4569,7 @@ bool ppu_initialize(const ppu_module& info, bool check_only, u64 file_size)
|
||||||
fmt::append(obj_name, "v6-kusa-%s-%s-%s.obj", fmt::base57(output, 16), fmt::base57(settings), jit_compiler::cpu(g_cfg.core.llvm_cpu));
|
fmt::append(obj_name, "v6-kusa-%s-%s-%s.obj", fmt::base57(output, 16), fmt::base57(settings), jit_compiler::cpu(g_cfg.core.llvm_cpu));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Emu.IsStopped())
|
if (cpu ? cpu->state.all_of(cpu_flag::exit) : Emu.IsStopped())
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -4588,7 +4588,9 @@ bool ppu_initialize(const ppu_module& info, bool check_only, u64 file_size)
|
||||||
{
|
{
|
||||||
ppu_log.success("LLVM: Module exists: %s", obj_name);
|
ppu_log.success("LLVM: Module exists: %s", obj_name);
|
||||||
|
|
||||||
total_compile++;
|
// Done already, revert total amount increase
|
||||||
|
// Avoid incrementing "pdone" instead because it creates false appreciation for both the progress dialog and the user
|
||||||
|
total_compile--;
|
||||||
}
|
}
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue