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