diff options
| author | JMC47 <JMC4789@gmail.com> | 2022-08-18 17:32:29 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-18 17:32:29 -0400 |
| commit | 498c06b85af8c07d85229850646c276fa47047ea (patch) | |
| tree | 7f5447442124269245506136d20e0d8c7522bf21 /Source/Core/VideoCommon/AsyncRequests.cpp | |
| parent | fea552a4de69da3281f18f7d7f8572a046ebd82c (diff) | |
| parent | ab8a8e6f84652d9072bb8296e461d0d54f403edb (diff) | |
Merge pull request #10989 from CasualPokePlayer/fifo_reset_dual_core
Fix crashes in dual core mode on a PI_FIFO_RESET
Diffstat (limited to 'Source/Core/VideoCommon/AsyncRequests.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/AsyncRequests.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/AsyncRequests.cpp b/Source/Core/VideoCommon/AsyncRequests.cpp index f8306ddc3e..0371683376 100644 --- a/Source/Core/VideoCommon/AsyncRequests.cpp +++ b/Source/Core/VideoCommon/AsyncRequests.cpp @@ -158,6 +158,10 @@ void AsyncRequests::HandleEvent(const AsyncRequests::Event& e) *e.bbox.data = g_renderer->BBoxRead(e.bbox.index); break; + case Event::FIFO_RESET: + Fifo::ResetVideoBuffer(); + break; + case Event::PERF_QUERY: g_perf_query->FlushResults(); break; |
