1
0
mirror of https://github.com/libretro/RetroArch synced 2025-03-26 02:37:23 +00:00

removed unneeded log in menu_entries_common_is_settings_entry; better logging of invalid key in database_cursor_iterate

This commit is contained in:
Andre Leiradella 2015-06-05 17:39:20 -03:00
parent efb555f8d6
commit 63e5460457
2 changed files with 1 additions and 2 deletions

@ -283,7 +283,7 @@ static int database_cursor_iterate(libretrodb_cursor_t *cur,
db_info->md5 = bin_to_hex_alloc((uint8_t*)val->binary.buff, val->binary.len);
break;
default:
RARCH_LOG("Unknown value: %d\n", value);
RARCH_LOG("Unknown key: %s\n", str);
break;
}
}

@ -216,7 +216,6 @@ int menu_entries_common_is_settings_entry(const char *label)
str = "Privacy Settings";
break;
default:
RARCH_LOG("unknown hash: %d\n", hash);
return 0;
}