[iQue] Fix osMotorInit (#2425)

This commit is contained in:
cadmic 2025-01-15 13:27:16 -08:00 committed by GitHub
parent 2b9b7a40b0
commit 4a205b9d4c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -133,6 +133,6 @@ s32 osMotorInit(OSMesgQueue* ctrlrqueue, OSPfs* pfs, s32 channel) {
pfs->status = PFS_MOTOR_INITIALIZED;
return 0; // "Recognized rumble pak"
#else
return PFS_ERR_INVALID;
return PFS_ERR_DEVICE;
#endif
}