Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #8773 from JosJuice/disable-tgc-conversion
DolphinQt: Disable converting from TGC
  • Loading branch information
JMC47 committed Apr 28, 2020
2 parents 116cef5 + d006a8b commit 54b85f6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Source/Core/DolphinQt/GameList/GameList.cpp
Expand Up @@ -257,7 +257,10 @@ void GameList::ShowContextMenu(const QPoint&)
if (HasMultipleSelected())
{
if (std::all_of(GetSelectedGames().begin(), GetSelectedGames().end(), [](const auto& game) {
return DiscIO::IsDisc(game->GetPlatform()) && game->IsVolumeSizeAccurate();
// Converting from TGC is temporarily disabled because PR #8738 was merged prematurely.
// The TGC check will be removed by PR #8644.
return DiscIO::IsDisc(game->GetPlatform()) && game->IsVolumeSizeAccurate() &&
game->GetBlobType() != DiscIO::BlobType::TGC;
}))
{
menu->addAction(tr("Convert Selected Files..."), this, &GameList::ConvertFile);
Expand Down

0 comments on commit 54b85f6

Please sign in to comment.