| 75 | } |
| 76 | |
| 77 | bool ROMFile::LoadData( u32 bytes_to_read, u8 *p_bytes, COutputStream & messages ) |
| 78 | { |
| 79 | if( !LoadRawData( bytes_to_read, p_bytes, messages ) ) |
| 80 | { |
| 81 | |
| 82 | messages << "Unable to get rom info from '" << mFilename << "'"; |
| 83 | |
| 84 | return false; |
| 85 | } |
| 86 | |
| 87 | return true; |
| 88 | } |
| 89 | |
| 90 | bool ROMFile::RequiresSwapping() const |
| 91 | { |
no outgoing calls
no test coverage detected