mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	input_common: Resolve C4267 warning on MSVC
This commit is contained in:
		
							parent
							
								
									1cc1c33a15
								
							
						
					
					
						commit
						4e73ff3978
					
				
					 1 changed files with 6 additions and 4 deletions
				
			
		|  | @ -335,7 +335,8 @@ std::shared_ptr<SDLJoystick> SDLState::GetSDLJoystickBySDLID(SDL_JoystickID sdl_ | |||
|         } | ||||
|         // There is no SDLJoystick without a mapped SDL_Joystick
 | ||||
|         // Create a new SDLJoystick
 | ||||
|         auto joystick = std::make_shared<SDLJoystick>(guid, map_it->second.size(), sdl_joystick); | ||||
|         auto joystick = std::make_shared<SDLJoystick>(guid, static_cast<int>(map_it->second.size()), | ||||
|                                                       sdl_joystick); | ||||
|         return map_it->second.emplace_back(std::move(joystick)); | ||||
|     } | ||||
|     auto joystick = std::make_shared<SDLJoystick>(guid, 0, sdl_joystick); | ||||
|  | @ -483,7 +484,8 @@ void SDLState::InitJoystick(int joystick_index) { | |||
|         (*it)->SetSDLJoystick(sdl_joystick); | ||||
|         return; | ||||
|     } | ||||
|     auto joystick = std::make_shared<SDLJoystick>(guid, joystick_guid_list.size(), sdl_joystick); | ||||
|     auto joystick = std::make_shared<SDLJoystick>(guid, static_cast<int>(joystick_guid_list.size()), | ||||
|                                                   sdl_joystick); | ||||
|     joystick_guid_list.emplace_back(std::move(joystick)); | ||||
| } | ||||
| 
 | ||||
|  | @ -519,8 +521,8 @@ void SDLState::InitGameController(int controller_index) { | |||
|         (*it)->SetSDLGameController(sdl_controller); | ||||
|         return; | ||||
|     } | ||||
|     auto controller = | ||||
|         std::make_shared<SDLGameController>(guid, controller_guid_list.size(), sdl_controller); | ||||
|     auto controller = std::make_shared<SDLGameController>( | ||||
|         guid, static_cast<int>(controller_guid_list.size()), sdl_controller); | ||||
|     controller_guid_list.emplace_back(std::move(controller)); | ||||
| } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue