(Vulkan) Ignore Fast-Forward Frameskip option (#15011)

This commit is contained in:
sonninnos 2023-02-22 20:43:06 +02:00 committed by GitHub
parent dfef7a5ba3
commit 00c0eda046
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -2816,7 +2816,8 @@ void video_driver_build_info(video_frame_info_t *video_info)
video_info->msg_queue_delay = runloop_st->msg_queue_delay;
video_info->runloop_is_paused = runloop_st->flags & RUNLOOP_FLAG_PAUSED;
video_info->runloop_is_slowmotion = runloop_st->flags & RUNLOOP_FLAG_SLOWMOTION;
video_info->fastforward_frameskip = settings->bools.fastforward_frameskip;
video_info->fastforward_frameskip = settings->bools.fastforward_frameskip
&& !string_is_equal(video_driver_get_ident(), "vulkan");
video_info->input_driver_nonblock_state = input_st
? (input_st->flags & INP_FLAG_NONBLOCKING) : false;

View File

@ -4378,7 +4378,7 @@ MSG_HASH(
)
MSG_HASH(
MENU_ENUM_SUBLABEL_FASTFORWARD_FRAMESKIP,
"Skip frames according to fast-forward rate. This conserves power and allows the use of 3rd party frame limiting."
"Skip frames according to fast-forward rate. This conserves power and allows the use of 3rd party frame limiting. Ignored with Vulkan to prevent double frame skipping."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SLOWMOTION_RATIO,