mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	event: added SetEventLocked method to change status an events lock
This commit is contained in:
		
							parent
							
								
									fd69fd0325
								
							
						
					
					
						commit
						beea6f054a
					
				
					 2 changed files with 18 additions and 0 deletions
				
			
		|  | @ -50,6 +50,17 @@ public: | |||
|     } | ||||
| }; | ||||
| 
 | ||||
| /**
 | ||||
|  * Changes whether an event is locked or not | ||||
|  * @param handle Handle to event to change | ||||
|  * @param locked Boolean locked value to set event | ||||
|  */ | ||||
| void SetEventLocked(const Handle handle, const bool locked) { | ||||
|     Event* evt = g_object_pool.GetFast<Event>(handle); | ||||
|     evt->locked = locked; | ||||
|     return; | ||||
| } | ||||
| 
 | ||||
| /**
 | ||||
|  * Clears an event | ||||
|  * @param handle Handle to event to clear | ||||
|  |  | |||
|  | @ -11,6 +11,13 @@ | |||
| 
 | ||||
| namespace Kernel { | ||||
| 
 | ||||
| /**
 | ||||
|  * Changes whether an event is locked or not | ||||
|  * @param handle Handle to event to change | ||||
|  * @param locked Boolean locked value to set event | ||||
|  */ | ||||
| void SetEventLocked(const Handle handle, const bool locked) | ||||
| 
 | ||||
| /**
 | ||||
|  * Clears an event | ||||
|  * @param handle Handle to event to clear | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue