mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 21:58:48 +00:00
DolphinQt: Mark Zstandard as recommended for RVZ
This commit is contained in:
parent
23ecda7ed0
commit
7a45ca0334
1 changed files with 5 additions and 1 deletions
|
@ -251,7 +251,11 @@ void ConvertDialog::OnFormatChanged()
|
||||||
|
|
||||||
if (format == DiscIO::BlobType::RVZ)
|
if (format == DiscIO::BlobType::RVZ)
|
||||||
{
|
{
|
||||||
AddToCompressionComboBox(QStringLiteral("Zstandard"), DiscIO::WIARVZCompressionType::Zstd);
|
// i18n: %1 is the name of a compression method (e.g. Zstandard)
|
||||||
|
const QString recommended = tr("%1 (recommended)");
|
||||||
|
|
||||||
|
AddToCompressionComboBox(recommended.arg(QStringLiteral("Zstandard")),
|
||||||
|
DiscIO::WIARVZCompressionType::Zstd);
|
||||||
m_compression->setCurrentIndex(m_compression->count() - 1);
|
m_compression->setCurrentIndex(m_compression->count() - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue