| 108 | } |
| 109 | |
| 110 | static bool testForPrimaryVolumeDescriptor(const std::array<u8, CD_FRAMESIZE_RAW>& buffer) |
| 111 | { |
| 112 | const std::array<u8, 6> identifier = {1, 'C', 'D', '0', '0', '1'}; |
| 113 | |
| 114 | return std::equal(identifier.begin(), identifier.end(), buffer.begin() + iso.GetBlockOffset()); |
| 115 | } |
| 116 | |
| 117 | static void FindLayer1Start() |
| 118 | { |
no test coverage detected