From 9a1a3789efe1f30b21e06b94b6e172891da66211 Mon Sep 17 00:00:00 2001 From: ParantezTech Date: Mon, 29 Jun 2026 13:32:03 +0300 Subject: [PATCH] [video] cap presenter ticks --- src/SharpEmu.Libs/VideoOut/VulkanVideoPresenter.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/SharpEmu.Libs/VideoOut/VulkanVideoPresenter.cs b/src/SharpEmu.Libs/VideoOut/VulkanVideoPresenter.cs index 36b0660..4b9d13c 100644 --- a/src/SharpEmu.Libs/VideoOut/VulkanVideoPresenter.cs +++ b/src/SharpEmu.Libs/VideoOut/VulkanVideoPresenter.cs @@ -268,6 +268,8 @@ internal static unsafe class VulkanVideoPresenter options.Title = VideoOutExports.GetWindowTitle(); options.WindowBorder = WindowBorder.Fixed; options.VSync = true; + options.FramesPerSecond = 60; + options.UpdatesPerSecond = 60; _window = Window.Create(options); _window.Load += Initialize; _window.Render += Render;