mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	yuzu_cmd/config: Silent implicit cast warning
Also replaces (float) with static_cast<float>(...) for consistency.
This commit is contained in:
		
							parent
							
								
									aba5dae557
								
							
						
					
					
						commit
						c0ceecd7cd
					
				
					 1 changed files with 5 additions and 4 deletions
				
			
		|  | @ -131,9 +131,10 @@ void Config::ReadValues() { | |||
|     Settings::values.factor_3d = | ||||
|         static_cast<u8>(sdl2_config->GetInteger("Renderer", "factor_3d", 0)); | ||||
| 
 | ||||
|     Settings::values.bg_red = (float)sdl2_config->GetReal("Renderer", "bg_red", 0.0); | ||||
|     Settings::values.bg_green = (float)sdl2_config->GetReal("Renderer", "bg_green", 0.0); | ||||
|     Settings::values.bg_blue = (float)sdl2_config->GetReal("Renderer", "bg_blue", 0.0); | ||||
|     Settings::values.bg_red = static_cast<float>(sdl2_config->GetReal("Renderer", "bg_red", 0.0)); | ||||
|     Settings::values.bg_green = | ||||
|         static_cast<float>(sdl2_config->GetReal("Renderer", "bg_green", 0.0)); | ||||
|     Settings::values.bg_blue = static_cast<float>(sdl2_config->GetReal("Renderer", "bg_blue", 0.0)); | ||||
| 
 | ||||
|     // Layout
 | ||||
|     Settings::values.layout_option = | ||||
|  | @ -165,7 +166,7 @@ void Config::ReadValues() { | |||
|     Settings::values.enable_audio_stretching = | ||||
|         sdl2_config->GetBoolean("Audio", "enable_audio_stretching", true); | ||||
|     Settings::values.audio_device_id = sdl2_config->GetString("Audio", "output_device", "auto"); | ||||
|     Settings::values.volume = sdl2_config->GetReal("Audio", "volume", 1); | ||||
|     Settings::values.volume = static_cast<float>(sdl2_config->GetReal("Audio", "volume", 1)); | ||||
|     Settings::values.mic_input_device = | ||||
|         sdl2_config->GetString("Audio", "mic_input_device", "Default"); | ||||
|     Settings::values.mic_input_type = | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue