From 4d4ab898c0f3705a53be656d4a908d73772586e2 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Wed, 18 Sep 2019 15:15:03 +1000 Subject: [PATCH] GPU: Flush rendering before VRAM->VRAM copies --- src/pse/gpu.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pse/gpu.cpp b/src/pse/gpu.cpp index bafdccf5f..598eddc21 100644 --- a/src/pse/gpu.cpp +++ b/src/pse/gpu.cpp @@ -704,6 +704,7 @@ bool GPU::HandleCopyRectangleVRAMToVRAMCommand() return true; } + FlushRender(); CopyVRAM(src_x, src_y, dst_x, dst_y, width, height); return true; }