CheatList: Fix games with serial aliases not loading from database

This commit is contained in:
Connor McLaughlin 2020-12-01 11:56:09 +10:00
parent f8c2d7dafd
commit 977c2f4947
1 changed files with 1 additions and 1 deletions

View File

@ -565,7 +565,7 @@ bool CheatList::LoadFromPackage(const std::string& game_code)
if (start == end)
continue;
if (start[0] == ':')
if (start[0] == ':' && !m_codes.empty())
break;
if (start[0] == '#')