diff options
author | noah katz <n-katz@hotmail.com> | 2018-01-17 17:20:46 +0100 |
---|---|---|
committer | noah katz <n-katz@hotmail.com> | 2018-01-17 17:20:46 +0100 |
commit | 1c98f3a9b321660358ca5f64993fcc7bc6214df1 (patch) | |
tree | 151498d3742fdc78496ebc4d6c1ee4ccbaf0c1cd | |
parent | Fix non translated string (same as Citra PR 2949) (diff) | |
download | yuzu-1c98f3a9b321660358ca5f64993fcc7bc6214df1.tar yuzu-1c98f3a9b321660358ca5f64993fcc7bc6214df1.tar.gz yuzu-1c98f3a9b321660358ca5f64993fcc7bc6214df1.tar.bz2 yuzu-1c98f3a9b321660358ca5f64993fcc7bc6214df1.tar.lz yuzu-1c98f3a9b321660358ca5f64993fcc7bc6214df1.tar.xz yuzu-1c98f3a9b321660358ca5f64993fcc7bc6214df1.tar.zst yuzu-1c98f3a9b321660358ca5f64993fcc7bc6214df1.zip |
Diffstat (limited to '')
-rw-r--r-- | src/yuzu/configuration/configure_system.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/configuration/configure_system.cpp b/src/yuzu/configuration/configure_system.cpp index 91795b2d8..89e783687 100644 --- a/src/yuzu/configuration/configure_system.cpp +++ b/src/yuzu/configuration/configure_system.cpp @@ -8,7 +8,6 @@ #include "yuzu/configuration/configure_system.h" #include "yuzu/ui_settings.h" - static const std::array<int, 12> days_in_month = {{ 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, }}; @@ -73,5 +72,6 @@ void ConfigureSystem::refreshConsoleID() { if (reply == QMessageBox::No) return; u64 console_id{}; - ui->label_console_id->setText(tr("Console ID: 0x%1").arg(QString::number(console_id, 16).toUpper())); + ui->label_console_id->setText( + tr("Console ID: 0x%1").arg(QString::number(console_id, 16).toUpper())); } |