diff --git a/src/video_core/dma_pusher.cpp b/src/video_core/dma_pusher.cpp index 7dbce41d37..0d594cb7a2 100644 --- a/src/video_core/dma_pusher.cpp +++ b/src/video_core/dma_pusher.cpp @@ -93,7 +93,17 @@ bool DmaPusher::Step() { ProcessCommands(headers); }; - if (Settings::IsGPULevelHigh() || (dma_state.method >= MacroRegistersStart)) { + // Only use unsafe reads for non-compute macro operations + if (Settings::IsGPULevelHigh()) { + const bool is_compute = (subchannel_type[dma_state.subchannel] == + Engines::EngineTypes::KeplerCompute); + + if (dma_state.method >= MacroRegistersStart && !is_compute) { + unsafe_process(); + return true; + } + + // Always use safe reads for compute operations safe_process(); return true; }