Browse Source

Merge pull request #1155 from tech4me/icon-fix

config: Fixed icon size get set to 0
bunnei 8 years ago
parent
commit
d1b1c42c07
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/yuzu/configuration/config.cpp

+ 1 - 1
src/yuzu/configuration/config.cpp

@@ -125,7 +125,7 @@ void Config::ReadValues() {
 
 
     qt_config->beginGroup("UIGameList");
     qt_config->beginGroup("UIGameList");
     UISettings::values.show_unknown = qt_config->value("show_unknown", true).toBool();
     UISettings::values.show_unknown = qt_config->value("show_unknown", true).toBool();
-    UISettings::values.icon_size = qt_config->value("icon_size", 48).toUInt();
+    UISettings::values.icon_size = qt_config->value("icon_size", 64).toUInt();
     UISettings::values.row_1_text_id = qt_config->value("row_1_text_id", 0).toUInt();
     UISettings::values.row_1_text_id = qt_config->value("row_1_text_id", 0).toUInt();
     UISettings::values.row_2_text_id = qt_config->value("row_2_text_id", 3).toUInt();
     UISettings::values.row_2_text_id = qt_config->value("row_2_text_id", 3).toUInt();
     qt_config->endGroup();
     qt_config->endGroup();