mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Merge pull request #4925 from vitor-k/icon-style
Change the coding style of GameListIconSize bounds check to use the enum
This commit is contained in:
		
						commit
						22d3099ea2
					
				
					 1 changed files with 6 additions and 4 deletions
				
			
		|  | @ -300,11 +300,13 @@ void Config::ReadValues() { | |||
|     qt_config->endGroup(); | ||||
| 
 | ||||
|     qt_config->beginGroup("GameList"); | ||||
|     int icon_size = ReadSetting("iconSize", 2).toInt(); | ||||
|     if (icon_size < 0 || icon_size > 2) { | ||||
|         icon_size = 2; | ||||
|     auto icon_size = UISettings::GameListIconSize{ | ||||
|         ReadSetting("iconSize", static_cast<int>(UISettings::GameListIconSize::LargeIcon)).toInt()}; | ||||
|     if (icon_size < UISettings::GameListIconSize::NoIcon || | ||||
|         icon_size > UISettings::GameListIconSize::LargeIcon) { | ||||
|         icon_size = UISettings::GameListIconSize::LargeIcon; | ||||
|     } | ||||
|     UISettings::values.game_list_icon_size = UISettings::GameListIconSize{icon_size}; | ||||
|     UISettings::values.game_list_icon_size = icon_size; | ||||
| 
 | ||||
|     int row_1 = ReadSetting("row1", 2).toInt(); | ||||
|     if (row_1 < 0 || row_1 > 3) { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue