mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-01-03 15:20:17 +01:00
rsx: Fix crash when host labels option is disabled
This commit is contained in:
parent
5ed7d043c4
commit
60ae4c1121
|
|
@ -1165,7 +1165,11 @@ namespace rsx
|
|||
|
||||
// Update other sub-units
|
||||
zcull_ctrl->update(this);
|
||||
m_host_dma_ctrl->update();
|
||||
|
||||
if (m_host_dma_ctrl)
|
||||
{
|
||||
m_host_dma_ctrl->update();
|
||||
}
|
||||
}
|
||||
|
||||
// Execute FIFO queue
|
||||
|
|
|
|||
Loading…
Reference in a new issue