Skip to content
Snippets Groups Projects
Commit 9a9d33a7 authored by noah katz's avatar noah katz
Browse files

Fix non translated string (same as Citra PR 2949)

parent f10a7081
No related branches found
No related tags found
No related merge requests found
......@@ -73,5 +73,5 @@ void ConfigureSystem::refreshConsoleID() {
if (reply == QMessageBox::No)
return;
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()));
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment