Merge pull request #5707 from RobLoach/slowmotion-display

Fix Slow Motion message timing and priority
This commit is contained in:
Twinaphex 2017-11-18 17:57:26 +01:00 committed by GitHub
commit 0e01d3d821
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2898,10 +2898,10 @@ static enum runloop_state runloop_check_state(
if (state_manager_frame_is_reversed())
runloop_msg_queue_push(
msg_hash_to_str(MSG_SLOW_MOTION_REWIND), 2, 30, true);
msg_hash_to_str(MSG_SLOW_MOTION_REWIND), 1, 1, false);
else
runloop_msg_queue_push(
msg_hash_to_str(MSG_SLOW_MOTION), 2, 30, true);
msg_hash_to_str(MSG_SLOW_MOTION), 1, 1, false);
}
}