fix ghost image with SSAA (#844)

This commit is contained in:
Logan McNaughton
2026-05-06 13:05:48 +02:00
committed by GitHub
parent 172867527b
commit 7015d44da7
+2 -2
View File
@@ -519,8 +519,8 @@ static uint32_t pop_message_callback(void *userdata, SDL_TimerID timerID,
static void render_frame(Vulkan::Device &device) {
RDP::ScanoutOptions options = {};
options.persist_frame_on_invalid_input = true;
options.blend_previous_frame = true;
options.upscale_deinterlacing = false;
options.blend_previous_frame = !gfx_info.ssaa;
options.upscale_deinterlacing = gfx_info.ssaa;
if (gfx_info.ssaa) {
switch (gfx_info.upscale) {
case 2: