mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Fix crashes in dual core mode on a PI_FIFO_RESET
This commit is contained in:
@ -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;
|
||||
|
@ -27,6 +27,7 @@ public:
|
||||
EFB_PEEK_Z,
|
||||
SWAP_EVENT,
|
||||
BBOX_READ,
|
||||
FIFO_RESET,
|
||||
PERF_QUERY,
|
||||
DO_SAVE_STATE,
|
||||
} type;
|
||||
@ -62,6 +63,10 @@ public:
|
||||
u16* data;
|
||||
} bbox;
|
||||
|
||||
struct
|
||||
{
|
||||
} fifo_reset;
|
||||
|
||||
struct
|
||||
{
|
||||
} perf_query;
|
||||
|
Reference in New Issue
Block a user