check whether disc is single or dual layer if its dual layer, check what the disctype is and what sector number layer1 starts at args: gets value for dvd type (0=single layer, 1=ptp, 2=otp) gets value for start lsn of layer1 returns: 1 if on dual layer disc 0 if not on dual layer disc
| 786 | // returns: 1 if on dual layer disc |
| 787 | // 0 if not on dual layer disc |
| 788 | static s32 cdvdReadDvdDualInfo(s32* dualType, u32* layer1Start) noexcept |
| 789 | { |
| 790 | *dualType = 0; |
| 791 | *layer1Start = 0; |
| 792 | |
| 793 | return CDVD->getDualInfo(dualType, layer1Start); |
| 794 | } |
| 795 | |
| 796 | static bool cdvdIsDVD() noexcept |
| 797 | { |
no outgoing calls
no test coverage detected