GPU: Flush rendering before VRAM->VRAM copies

This commit is contained in:
Connor McLaughlin 2019-09-18 15:15:03 +10:00
parent 2c07db6dd5
commit 4d4ab898c0

View file

@ -704,6 +704,7 @@ bool GPU::HandleCopyRectangleVRAMToVRAMCommand()
return true;
}
FlushRender();
CopyVRAM(src_x, src_y, dst_x, dst_y, width, height);
return true;
}