mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 17:11:23 +00:00
disable compat for non ps3 games
This commit is contained in:
parent
a1c72de1eb
commit
96a893120d
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user