From c66a9f117d9feabdcc35c7df9f114b48ac872380 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Thu, 18 Aug 2022 19:30:39 +1000 Subject: [PATCH] System: Don't empty buffers on state load --- src/core/system.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/system.cpp b/src/core/system.cpp index d083b4c04..bd09b15d6 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -1859,7 +1859,6 @@ bool System::DoLoadState(ByteStream* state, bool force_software_renderer, bool u if (s_state == State::Starting) s_state = State::Running; - SPU::GetOutputStream()->EmptyBuffer(); ResetPerformanceCounters(); ResetThrottler(); return true;