diff options
| author | 2018-01-16 19:56:41 -0500 | |
|---|---|---|
| committer | 2018-01-16 19:56:41 -0500 | |
| commit | 9a9d33a74185bd14d654a134595bd121c7d2d207 (patch) | |
| tree | 9e29ebfbc6896641baa503cad70545b329c99859 /src | |
| parent | Merge pull request #48 from spycrab/cmake_python (diff) | |
| download | yuzu-9a9d33a74185bd14d654a134595bd121c7d2d207.tar.gz yuzu-9a9d33a74185bd14d654a134595bd121c7d2d207.tar.xz yuzu-9a9d33a74185bd14d654a134595bd121c7d2d207.zip | |
Fix non translated string (same as Citra PR 2949)
Diffstat (limited to 'src')
| -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 | } |