diff options
| -rw-r--r-- | src/yuzu/configuration/configure_system.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu/configuration/configure_system.cpp b/src/yuzu/configuration/configure_system.cpp index d198e38ae..89e783687 100644 --- a/src/yuzu/configuration/configure_system.cpp +++ b/src/yuzu/configuration/configure_system.cpp | |||
| @@ -72,5 +72,6 @@ void ConfigureSystem::refreshConsoleID() { | |||
| 72 | if (reply == QMessageBox::No) | 72 | if (reply == QMessageBox::No) |
| 73 | return; | 73 | return; |
| 74 | u64 console_id{}; | 74 | u64 console_id{}; |
| 75 | ui->label_console_id->setText("Console ID: 0x" + QString::number(console_id, 16).toUpper()); | 75 | ui->label_console_id->setText( |
| 76 | tr("Console ID: 0x%1").arg(QString::number(console_id, 16).toUpper())); | ||
| 76 | } | 77 | } |