early-access version 4068

main
pineappleEA 2024-01-17 06:21:37 +01:00
parent 1d5b8027e5
commit 4ce6b9bb78
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access
=============
This is the source code for early-access 4067.
This is the source code for early-access 4068.
## Legal Notice

View File

@ -329,7 +329,7 @@ void PresentManager::CopyToSwapchainImpl(Frame* frame) {
// to account for that.
const bool is_suboptimal = swapchain.NeedsRecreation();
const bool size_changed =
swapchain.GetWidth() < frame->width || swapchain.GetHeight() < frame->height;
swapchain.GetWidth() != frame->width || swapchain.GetHeight() != frame->height;
if (is_suboptimal || size_changed) {
RecreateSwapchain(frame);
}