Selaa lähdekoodia

Y2R: Use the proper error code when GetStandardCoefficient receives an invalid value.

Subv 9 vuotta sitten
vanhempi
commit
5ddc2e09b1
1 muutettua tiedostoa jossa 3 lisäystä ja 1 poistoa
  1. 3 1
      src/core/hle/service/y2r_u.cpp

+ 3 - 1
src/core/hle/service/y2r_u.cpp

@@ -531,7 +531,9 @@ static void GetStandardCoefficient(Interface* self) {
         LOG_DEBUG(Service_Y2R, "called standard_coefficient=%u ", index);
         LOG_DEBUG(Service_Y2R, "called standard_coefficient=%u ", index);
     } else {
     } else {
         cmd_buff[0] = IPC::MakeHeader(0x21, 1, 0);
         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);
         LOG_ERROR(Service_Y2R, "called standard_coefficient=%u  The argument is invalid!", index);
     }
     }