Compare commits

..

No commits in common. "911b416d28e4bf15345f00622f33c615a645f1ea" and "6dd6f1945b6a74ec9349d068725212a197dfacef" have entirely different histories.

2 changed files with 1 additions and 6 deletions

View file

@ -91,11 +91,6 @@ bool CVulkan::Initialize(HWND hWnd)
}
}
if (context->swapchain->set_vsync(GUI.Vsync))
{
context->recreate_swapchain();
}
simple_output = std::make_unique<Vulkan::SimpleOutput>(context.get(), vk::Format::eR5G6B5UnormPack16);
return true;

View file

@ -706,7 +706,7 @@ void WinThrottleFramerate()
static HANDLE throttle_timer = nullptr;
static int64_t PCBase, PCFrameTime, PCFrameTimeNTSC, PCFrameTimePAL, PCStart, PCEnd;
if (Settings.SkipFrames != AUTO_FRAMERATE || Settings.TurboMode)
if (Settings.SkipFrames != AUTO_FRAMERATE)
return;
if (!throttle_timer)