mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 14:08:37 +00:00
PPU LLVM: Allow to abort OVL analysis in the middle
This commit is contained in:
parent
3b8f8d7fc8
commit
1371bf89e0
3 changed files with 21 additions and 1 deletions
|
|
@ -3479,6 +3479,12 @@ extern void ppu_precompile(std::vector<std::string>& dir_queue, std::vector<ppu_
|
|||
|
||||
if (error)
|
||||
{
|
||||
if (error == CELL_CANCEL + 0u)
|
||||
{
|
||||
// Emulation stopped
|
||||
break;
|
||||
}
|
||||
|
||||
// Abort
|
||||
ovl_err = elf_error::header_type;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue