mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 03:55:32 +00:00
rsx: Fix crash when host labels option is disabled
This commit is contained in:
parent
5ed7d043c4
commit
39730e0a5d
1 changed files with 5 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue