| 847 | } |
| 848 | |
| 849 | const GameList::Entry* GameList::GetEntryBySerialAndCRC(const std::string_view serial, u32 crc) |
| 850 | { |
| 851 | for (const Entry& entry : s_entries) |
| 852 | { |
| 853 | if (entry.crc == crc && StringUtil::compareNoCase(entry.serial, serial)) |
| 854 | return &entry; |
| 855 | } |
| 856 | |
| 857 | return nullptr; |
| 858 | } |
| 859 | |
| 860 | u32 GameList::GetEntryCount() |
| 861 | { |
nothing calls this directly
no test coverage detected