mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-03 16:39:01 -06:00 
			
		
		
		
	Y2R: Use the proper error code when GetStandardCoefficient receives an invalid value.
This commit is contained in:
		@@ -531,7 +531,9 @@ static void GetStandardCoefficient(Interface* self) {
 | 
			
		||||
        LOG_DEBUG(Service_Y2R, "called standard_coefficient=%u ", index);
 | 
			
		||||
    } else {
 | 
			
		||||
        cmd_buff[0] = IPC::MakeHeader(0x21, 1, 0);
 | 
			
		||||
        cmd_buff[1] = -1; // TODO(bunnei): Identify the correct error code for this
 | 
			
		||||
        cmd_buff[1] = ResultCode(ErrorDescription::InvalidEnumValue, ErrorModule::CAM,
 | 
			
		||||
                                 ErrorSummary::InvalidArgument, ErrorLevel::Usage)
 | 
			
		||||
                          .raw;
 | 
			
		||||
 | 
			
		||||
        LOG_ERROR(Service_Y2R, "called standard_coefficient=%u  The argument is invalid!", index);
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user