From b76618fdf44087713e14be6d38125ddc1f5ef028 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Tue, 31 Dec 2024 15:24:36 +1000 Subject: [PATCH] System: Should call PGXP Reset not Initialize() in InternalReset() --- src/core/system.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/system.cpp b/src/core/system.cpp index bcc8e453b..5a4dc733d 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -2728,7 +2728,7 @@ void System::InternalReset() CPU::Reset(); CPU::CodeCache::Reset(); if (g_settings.gpu_pgxp_enable) - CPU::PGXP::Initialize(); + CPU::PGXP::Reset(); Bus::Reset(); PIO::Reset();