Show NKitness in file format string

To make people more aware that they're not using a normal disc image.
This commit is contained in:
JosJuice
2020-10-06 13:00:58 +02:00
parent dcaf2b9625
commit d64fc67b04
7 changed files with 22 additions and 11 deletions

View File

@ -54,10 +54,9 @@ QGroupBox* InfoWidget::CreateFileDetails()
}
else
{
const QString file_format =
QStringLiteral("%1 (%2)")
.arg(QString::fromStdString(DiscIO::GetName(m_game.GetBlobType(), true)))
.arg(QString::fromStdString(file_size));
const QString file_format = QStringLiteral("%1 (%2)")
.arg(QString::fromStdString(m_game.GetFileFormatName()))
.arg(QString::fromStdString(file_size));
layout->addRow(tr("File Format:"), CreateValueDisplay(file_format));
QString compression = QString::fromStdString(m_game.GetCompressionMethod());