noah katz 8 лет назад
Родитель
Сommit
1c98f3a9b3
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      src/yuzu/configuration/configure_system.cpp

+ 2 - 2
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()));
 }