mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	apt/applet_manager: std::move parameter in GlanceParameter()
Same behavior, minus a redundant copy.
This commit is contained in:
		
							parent
							
								
									a6e37b48e9
								
							
						
					
					
						commit
						7eabcdf1c3
					
				
					 1 changed files with 3 additions and 2 deletions
				
			
		|  | @ -209,10 +209,11 @@ ResultVal<MessageParameter> AppletManager::GlanceParameter(AppletId app_id) { | |||
| 
 | ||||
|     // Note: The NS module always clears the DSPSleep and DSPWakeup signals even in GlanceParameter.
 | ||||
|     if (next_parameter->signal == SignalType::DspSleep || | ||||
|         next_parameter->signal == SignalType::DspWakeup) | ||||
|         next_parameter->signal == SignalType::DspWakeup) { | ||||
|         next_parameter = {}; | ||||
|     } | ||||
| 
 | ||||
|     return MakeResult<MessageParameter>(parameter); | ||||
|     return MakeResult<MessageParameter>(std::move(parameter)); | ||||
| } | ||||
| 
 | ||||
| ResultVal<MessageParameter> AppletManager::ReceiveParameter(AppletId app_id) { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue