From 4b3e6d7a58db3249cdfb4623fd468be5f724e30d Mon Sep 17 00:00:00 2001 From: refractionpcsx2 Date: Mon, 25 Jul 2022 22:04:16 +0100 Subject: [PATCH] GS: Flush any pending draws on reset. --- pcsx2/GS/GSState.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pcsx2/GS/GSState.cpp b/pcsx2/GS/GSState.cpp index 4200ad2d16..3d83f1cf04 100644 --- a/pcsx2/GS/GSState.cpp +++ b/pcsx2/GS/GSState.cpp @@ -149,6 +149,8 @@ GSState::~GSState() void GSState::Reset(bool hardware_reset) { + Flush(); + // FIXME: bios logo not shown cut in half after reset, missing graphics in GoW after first FMV if (hardware_reset) memset(m_mem.m_vm8, 0, m_mem.m_vmsize);