diff --git a/README.md b/README.md index 4b1e3a8c1..a563dacaa 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 3505. +This is the source code for early-access 3506. ## Legal Notice diff --git a/src/video_core/renderer_vulkan/vk_blit_screen.cpp b/src/video_core/renderer_vulkan/vk_blit_screen.cpp index 182c41e2a..a2c4f54e1 100755 --- a/src/video_core/renderer_vulkan/vk_blit_screen.cpp +++ b/src/video_core/renderer_vulkan/vk_blit_screen.cpp @@ -450,7 +450,7 @@ void BlitScreen::DrawToSwapchain(Frame* frame, const Tegra::FramebufferConfig& f const Layout::FramebufferLayout layout = render_window.GetFramebufferLayout(); if (layout.width != frame->width || layout.height != frame->height || is_srgb != frame->is_srgb) { - scheduler.Finish(); + Recreate(); present_manager.RecreateFrame(frame, layout.width, layout.height, is_srgb, image_view_format, *renderpass); }