diff --git a/OptiScaler/hooks/HooksVk.cpp b/OptiScaler/hooks/HooksVk.cpp index 51c701bd..bc524bdd 100644 --- a/OptiScaler/hooks/HooksVk.cpp +++ b/OptiScaler/hooks/HooksVk.cpp @@ -8,6 +8,7 @@ #include #include +#include typedef struct VkWin32SurfaceCreateInfoKHR { @@ -184,6 +185,9 @@ static VkResult hkvkQueuePresentKHR(VkQueue queue, VkPresentInfoKHR* pPresentInf auto result = o_QueuePresentKHR(queue, pPresentInfo); State::Instance().vulkanCreatingSC = false; + // Unsure about Vulkan Reflex fps limit and if that could be causing an issue here + FrameLimit::sleep(); + LOG_FUNC_RESULT(result); return result; }