Fix non translated string (same as Citra PR 2949)
This commit is contained in:
parent
f10a7081e3
commit
9a9d33a741
1 changed files with 1 additions and 1 deletions
|
@ -73,5 +73,5 @@ void ConfigureSystem::refreshConsoleID() {
|
||||||
if (reply == QMessageBox::No)
|
if (reply == QMessageBox::No)
|
||||||
return;
|
return;
|
||||||
u64 console_id{};
|
u64 console_id{};
|
||||||
ui->label_console_id->setText("Console ID: 0x" + QString::number(console_id, 16).toUpper());
|
ui->label_console_id->setText(tr("Console ID: 0x%1").arg(QString::number(console_id, 16).toUpper()));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue