mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 17:49:48 -06:00
Revert "DolphinQt: Disable converting from TGC"
This reverts commit d006a8b52f
.
This commit is contained in:
@ -259,10 +259,7 @@ void GameList::ShowContextMenu(const QPoint&)
|
|||||||
const auto selected_games = GetSelectedGames();
|
const auto selected_games = GetSelectedGames();
|
||||||
|
|
||||||
if (std::all_of(selected_games.begin(), selected_games.end(), [](const auto& game) {
|
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.
|
return DiscIO::IsDisc(game->GetPlatform()) && game->IsVolumeSizeAccurate();
|
||||||
// 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);
|
menu->addAction(tr("Convert Selected Files..."), this, &GameList::ConvertFile);
|
||||||
|
Reference in New Issue
Block a user