mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-22 20:43:07 +00:00
Snake: fix deadlock caused by use of view_port_update while locking model (#3063)
This commit is contained in:
parent
77d6c41914
commit
9f6fc6fe79
1 changed files with 1 additions and 1 deletions
|
@ -390,8 +390,8 @@ int32_t snake_game_app(void* p) {
|
|||
// event timeout
|
||||
}
|
||||
|
||||
view_port_update(view_port);
|
||||
furi_mutex_release(snake_state->mutex);
|
||||
view_port_update(view_port);
|
||||
}
|
||||
|
||||
// Return backlight to normal state
|
||||
|
|
Loading…
Reference in a new issue