| 118 | } |
| 119 | |
| 120 | static RomID RomIDFromString( const char * str ) |
| 121 | { |
| 122 | u32 crc1, crc2, country; |
| 123 | sscanf( str, "%08x%08x-%02x", &crc1, &crc2, &country ); |
| 124 | return RomID( crc1, crc2, (u8)country ); |
| 125 | } |
| 126 | |
| 127 | bool IPreferences::OpenPreferencesFile( const char * filename ) |
| 128 | { |
no test coverage detected