diff options
| author | 2018-01-17 11:20:46 -0500 | |
|---|---|---|
| committer | 2018-01-17 11:20:46 -0500 | |
| commit | 1c98f3a9b321660358ca5f64993fcc7bc6214df1 (patch) | |
| tree | 151498d3742fdc78496ebc4d6c1ee4ccbaf0c1cd | |
| parent | Fix non translated string (same as Citra PR 2949) (diff) | |
| download | yuzu-1c98f3a9b321660358ca5f64993fcc7bc6214df1.tar.gz yuzu-1c98f3a9b321660358ca5f64993fcc7bc6214df1.tar.xz yuzu-1c98f3a9b321660358ca5f64993fcc7bc6214df1.zip | |
Fixed formatting
| -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 @@ | |||
| 8 | #include "yuzu/configuration/configure_system.h" | 8 | #include "yuzu/configuration/configure_system.h" |
| 9 | #include "yuzu/ui_settings.h" | 9 | #include "yuzu/ui_settings.h" |
| 10 | 10 | ||
| 11 | |||
| 12 | static const std::array<int, 12> days_in_month = {{ | 11 | static const std::array<int, 12> days_in_month = {{ |
| 13 | 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, | 12 | 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, |
| 14 | }}; | 13 | }}; |
| @@ -73,5 +72,6 @@ void ConfigureSystem::refreshConsoleID() { | |||
| 73 | if (reply == QMessageBox::No) | 72 | if (reply == QMessageBox::No) |
| 74 | return; | 73 | return; |
| 75 | u64 console_id{}; | 74 | u64 console_id{}; |
| 76 | ui->label_console_id->setText(tr("Console ID: 0x%1").arg(QString::number(console_id, 16).toUpper())); | 75 | ui->label_console_id->setText( |
| 76 | tr("Console ID: 0x%1").arg(QString::number(console_id, 16).toUpper())); | ||
| 77 | } | 77 | } |