mirror of
				https://github.com/halpz/re3.git
				synced 2025-11-04 15:35:08 +00:00 
			
		
		
		
	Restore original code of CControllerState::CheckForInput
This commit is contained in:
		
							parent
							
								
									6cf698badd
								
							
						
					
					
						commit
						6f81e84bd4
					
				| 
						 | 
				
			
			@ -518,9 +518,12 @@ void FlyingFishCheat(void)
 | 
			
		|||
bool
 | 
			
		||||
CControllerState::CheckForInput(void)
 | 
			
		||||
{
 | 
			
		||||
	return !!LeftStickX || !!LeftStickY || !!RightStickX || !!RightStickY || !!LeftShoulder1 || !!LeftShoulder2 || !!RightShoulder1 || !!RightShoulder2 ||
 | 
			
		||||
		!!DPadUp || !!DPadDown || !!DPadLeft || !!DPadRight || !!Start || !!Select || !!Square || !!Triangle || !!Cross || !!Circle || !!LeftShock ||
 | 
			
		||||
		!!RightShock;
 | 
			
		||||
	return !!RightStickX || !!RightStickY || !!LeftStickX || !!LeftStickY
 | 
			
		||||
		|| !!DPadUp || !!DPadDown || !!DPadLeft || !!DPadRight
 | 
			
		||||
		|| !!Triangle || !!Cross || !!Circle || !!Square
 | 
			
		||||
		|| !!Start || !!Select
 | 
			
		||||
		|| !!LeftShoulder1 || !!LeftShoulder2 || !!RightShoulder1 || !!RightShoulder2
 | 
			
		||||
		|| !!LeftShock || !!RightShock;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue