mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
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:
@ -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());
|
||||
|
Reference in New Issue
Block a user