Skip to content

Commit

Permalink
Merge pull request libretro#2860 from lakkatv/master
Browse files Browse the repository at this point in the history
Fix arcade LPL generation
  • Loading branch information
inactive123 committed Apr 14, 2016
2 parents 14a8ec0 + 86cf324 commit 1583f7d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tasks/task_database.c
Original file line number Diff line number Diff line change
Expand Up @@ -392,8 +392,10 @@ static int database_info_iterate_crc_lookup(
RARCH_LOG("CRC32: 0x%08X , entry CRC32: 0x%08X (%s).\n",
db_state->crc, db_info_entry->crc32, db_info_entry->name);
#endif
if (db_state->crc == db_info_entry->crc32
|| db_state->zip_crc == db_info_entry->crc32)
if (db_state->zip_crc == db_info_entry->crc32)
return database_info_list_iterate_found_match(
db_state, db, NULL);
if (db_state->crc == db_info_entry->crc32)
return database_info_list_iterate_found_match(
db_state, db, zip_entry);
}
Expand Down

0 comments on commit 1583f7d

Please sign in to comment.