mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-04-03 00:45:44 +00:00
fix(core): fix haptic custom effect in loaders
[no changelog]
(cherry picked from commit 29e03bd873
)
This commit is contained in:
parent
faa3106606
commit
a1cb456dd6
@ -421,8 +421,8 @@ __attribute((no_stack_protector)) void syscall_handler(uint32_t *args,
|
||||
} break;
|
||||
|
||||
case SYSCALL_HAPTIC_PLAY_CUSTOM: {
|
||||
int8_t amplitude_pct = (int8_t)args[1];
|
||||
uint16_t duration_ms = (uint16_t)args[2];
|
||||
int8_t amplitude_pct = (int8_t)args[0];
|
||||
uint16_t duration_ms = (uint16_t)args[1];
|
||||
args[0] = haptic_play_custom(amplitude_pct, duration_ms);
|
||||
} break;
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user