| 452 | } |
| 453 | |
| 454 | bool cdvdLoadDiscElf(ElfObject* elfo, IsoReader& isor, const std::string_view elfpath, bool isPSXElf, Error* error) |
| 455 | { |
| 456 | if (!elfpath.starts_with("cdrom:") && !elfpath.starts_with("cdrom0:")) |
| 457 | return false; |
| 458 | |
| 459 | return cdvdUncheckedLoadDiscElf(elfo, isor, elfpath, isPSXElf, error); |
| 460 | } |
| 461 | |
| 462 | u32 cdvdGetElfCRC(const std::string& path) |
| 463 | { |
no test coverage detected