diff options
| author | JosJuice <josjuice@gmail.com> | 2020-04-28 19:32:11 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2020-06-17 12:32:40 +0200 |
| commit | 864dcd40b52dc87406793626cb70ffc53c10beaa (patch) | |
| tree | 49ce3bec1447699832ad10511ad4e735ccf27f9c /Source | |
| parent | 31ecc6c214fc7dba993ec11ef81ae4f5afdf8d19 (diff) | |
Revert "DolphinQt: Disable converting from TGC"
This reverts commit d006a8b52f4a68c976c9396008aff2d5cd065850.
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/DolphinQt/GameList/GameList.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Source/Core/DolphinQt/GameList/GameList.cpp b/Source/Core/DolphinQt/GameList/GameList.cpp index d3f72e14f2..56705133c0 100644 --- a/Source/Core/DolphinQt/GameList/GameList.cpp +++ b/Source/Core/DolphinQt/GameList/GameList.cpp @@ -259,10 +259,7 @@ void GameList::ShowContextMenu(const QPoint&) const auto selected_games = GetSelectedGames(); if (std::all_of(selected_games.begin(), selected_games.end(), [](const auto& game) { - // 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; + return DiscIO::IsDisc(game->GetPlatform()) && game->IsVolumeSizeAccurate(); })) { menu->addAction(tr("Convert Selected Files..."), this, &GameList::ConvertFile); |
