mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Merge pull request #8307 from JosJuice/fix-titledatabase
Fix TitleDatabase
This commit is contained in:
commit
dd8bc7b3e6
@ -41,9 +41,10 @@ static Map LoadMap(const std::string& file_path)
|
||||
const size_t equals_index = line.find('=');
|
||||
if (equals_index != std::string::npos)
|
||||
{
|
||||
const std::string_view game_id = StripSpaces(line.substr(0, equals_index));
|
||||
const std::string_view line_view(line);
|
||||
const std::string_view game_id = StripSpaces(line_view.substr(0, equals_index));
|
||||
if (game_id.length() >= 4)
|
||||
map.emplace(game_id, StripSpaces(line.substr(equals_index + 1)));
|
||||
map.emplace(game_id, StripSpaces(line_view.substr(equals_index + 1)));
|
||||
}
|
||||
}
|
||||
return map;
|
||||
|
Loading…
Reference in New Issue
Block a user