diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-17 19:46:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-17 19:46:39 +0100 |
commit | f2b4b668e3d98fe09fa215486060b0549831f86d (patch) | |
tree | bee430edb52f9528f1adc62261e6e899fc295f27 | |
parent | Merge pull request #64 from shinyquagsire23/hid-timing (diff) | |
parent | Fixed formatting (diff) | |
download | yuzu-f2b4b668e3d98fe09fa215486060b0549831f86d.tar yuzu-f2b4b668e3d98fe09fa215486060b0549831f86d.tar.gz yuzu-f2b4b668e3d98fe09fa215486060b0549831f86d.tar.bz2 yuzu-f2b4b668e3d98fe09fa215486060b0549831f86d.tar.lz yuzu-f2b4b668e3d98fe09fa215486060b0549831f86d.tar.xz yuzu-f2b4b668e3d98fe09fa215486060b0549831f86d.tar.zst yuzu-f2b4b668e3d98fe09fa215486060b0549831f86d.zip |
Diffstat (limited to '')
-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() { 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())); } |