From d59c449ff66db0e305dacb64ab849a6a6cde67fc Mon Sep 17 00:00:00 2001 From: kd-11 Date: Thu, 6 Feb 2020 23:20:14 +0300 Subject: [PATCH] vk: Remove an overzealous assert --- rpcs3/Emu/RSX/VK/VKRenderTargets.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Emu/RSX/VK/VKRenderTargets.h b/rpcs3/Emu/RSX/VK/VKRenderTargets.h index ec5b595c6c..a206fc3b0a 100644 --- a/rpcs3/Emu/RSX/VK/VKRenderTargets.h +++ b/rpcs3/Emu/RSX/VK/VKRenderTargets.h @@ -260,9 +260,9 @@ namespace vk if (final_dst->width() == subres.width_in_block && final_dst->height() == subres.height_in_block) { - // Only possible if MSAA is enabled with 100% resolution scale. + // Possible if MSAA is enabled with 100% resolution scale or + // surface dimensions are less than resolution scale threshold and no MSAA. // Writethrough. - verify(HERE), g_cfg.video.resolution_scale_percent == 100 && samples() > 1; content = final_dst; } else