summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-17 19:46:39 +0100
committerGitHub <noreply@github.com>2018-01-17 19:46:39 +0100
commitf2b4b668e3d98fe09fa215486060b0549831f86d (patch)
treebee430edb52f9528f1adc62261e6e899fc295f27 /src
parentMerge pull request #64 from shinyquagsire23/hid-timing (diff)
parentFixed formatting (diff)
downloadyuzu-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 'src')
-rw-r--r--src/yuzu/configuration/configure_system.cpp3
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()));
}