disable compat for non ps3 games
This commit is contained in:
@@ -614,7 +614,7 @@ void game_list_frame::ShowSpecifiedContextMenu(const QPoint &pos, int row)
|
||||
{
|
||||
removeGame->setEnabled(false);
|
||||
}
|
||||
else if (category::non_disc_games.contains(qstr(m_game_data[row].info.category)))
|
||||
else if (!m_game_data[row].bootable)
|
||||
{
|
||||
boot->setEnabled(false), f.setBold(false), boot->setFont(f);
|
||||
configure->setEnabled(false);
|
||||
@@ -622,6 +622,10 @@ void game_list_frame::ShowSpecifiedContextMenu(const QPoint &pos, int row)
|
||||
openConfig->setEnabled(false);
|
||||
checkCompat->setEnabled(false);
|
||||
}
|
||||
else if (category != category::hdd_Game)
|
||||
{
|
||||
checkCompat->setEnabled(false);
|
||||
}
|
||||
|
||||
myMenu.exec(globalPos);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user