1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-02-05 11:44:31 +00:00

[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

View file

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