diff options
| author | 2020-11-07 00:08:19 -0800 | |
|---|---|---|
| committer | 2020-11-07 00:08:19 -0800 | |
| commit | dc5396a4668b564b2d1f4488d10581dd67fc22db (patch) | |
| tree | 831c685aa31c43777668f85a94b2a3f6cb5e2a1f /src/core | |
| parent | Merge pull request #4888 from lioncash/unicorn-remove (diff) | |
| download | yuzu-dc5396a4668b564b2d1f4488d10581dd67fc22db.tar.gz yuzu-dc5396a4668b564b2d1f4488d10581dd67fc22db.tar.xz yuzu-dc5396a4668b564b2d1f4488d10581dd67fc22db.zip | |
video_core: dma_pusher: Remove integrity check on command lists.
- This seems to cause softlocks in Breath of the Wild.
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp b/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp index 152019548..b1d9d55b5 100644 --- a/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp +++ b/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp | |||
| @@ -214,7 +214,6 @@ u32 nvhost_gpu::SubmitGPFIFOImpl(IoctlSubmitGpfifo& params, std::vector<u8>& out | |||
| 214 | params.fence_out.value = syncpoint_manager.GetSyncpointMax(params.fence_out.id); | 214 | params.fence_out.value = syncpoint_manager.GetSyncpointMax(params.fence_out.id); |
| 215 | } | 215 | } |
| 216 | 216 | ||
| 217 | entries.RefreshIntegrityChecks(gpu); | ||
| 218 | gpu.PushGPUEntries(std::move(entries)); | 217 | gpu.PushGPUEntries(std::move(entries)); |
| 219 | 218 | ||
| 220 | if (params.flags.add_increment.Value()) { | 219 | if (params.flags.add_increment.Value()) { |