PPU LLVM: Allow to abort OVL analysis in the middle

This commit is contained in:
Eladash 2023-07-14 17:57:43 +03:00 committed by Elad Ashkenazi
parent 3b8f8d7fc8
commit 1371bf89e0
3 changed files with 21 additions and 1 deletions

View file

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