mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 21:58:48 +00: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:
parent
dcaf2b9625
commit
d64fc67b04
7 changed files with 22 additions and 11 deletions
|
@ -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());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue