mirror of
				https://git.suyu.dev/suyu/suyu.git
				synced 2025-11-04 12:34:39 +08:00 
			
		
		
		
	service: added additional hack to return success on unimplemented service calls
This commit is contained in:
		
							parent
							
								
									b08b3c154f
								
							
						
					
					
						commit
						545e6919ce
					
				@ -87,12 +87,20 @@ public:
 | 
			
		||||
        if (itr == m_functions.end()) {
 | 
			
		||||
            ERROR_LOG(OSHLE, "Unknown/unimplemented function: port = %s, command = 0x%08X!", 
 | 
			
		||||
                GetPortName(), cmd_buff[0]);
 | 
			
		||||
            return 0; // TODO(bunnei): Hack - ignore error
 | 
			
		||||
 | 
			
		||||
            // TODO(bunnei): Hack - ignore error
 | 
			
		||||
            u32* cmd_buff = Service::GetCommandBuffer();
 | 
			
		||||
            cmd_buff[1] = 0;
 | 
			
		||||
            return 0; 
 | 
			
		||||
        }
 | 
			
		||||
        if (itr->second.func == NULL) {
 | 
			
		||||
            ERROR_LOG(OSHLE, "Unimplemented function: port = %s, name = %s!", 
 | 
			
		||||
                GetPortName(), itr->second.name.c_str());
 | 
			
		||||
            return 0; // TODO(bunnei): Hack - ignore error
 | 
			
		||||
 | 
			
		||||
            // TODO(bunnei): Hack - ignore error
 | 
			
		||||
            u32* cmd_buff = Service::GetCommandBuffer();
 | 
			
		||||
            cmd_buff[1] = 0;
 | 
			
		||||
            return 0; 
 | 
			
		||||
        } 
 | 
			
		||||
 | 
			
		||||
        itr->second.func(this);
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user