diff options
| author | 2019-07-25 12:34:36 -0400 | |
|---|---|---|
| committer | 2019-07-25 12:34:36 -0400 | |
| commit | 31e8a61527df805529a9c0bbda735be7cb9e38c9 (patch) | |
| tree | 5edfff9af910daa29753b224c7f68013eb05f61b /src/video_core/engines | |
| parent | Merge pull request #2704 from FernandoS27/conditional (diff) | |
| parent | Shader_Ir: Change Debug Asserts for Log Warnings (diff) | |
| download | yuzu-31e8a61527df805529a9c0bbda735be7cb9e38c9.tar.gz yuzu-31e8a61527df805529a9c0bbda735be7cb9e38c9.tar.xz yuzu-31e8a61527df805529a9c0bbda735be7cb9e38c9.zip | |
Merge pull request #2743 from FernandoS27/surpress-assert
Downgrade and suppress a series of GPU asserts and debug messages.
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/maxwell_dma.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_dma.cpp b/src/video_core/engines/maxwell_dma.cpp index b5f57e534..a28c04473 100644 --- a/src/video_core/engines/maxwell_dma.cpp +++ b/src/video_core/engines/maxwell_dma.cpp | |||
| @@ -38,7 +38,7 @@ void MaxwellDMA::CallMethod(const GPU::MethodCall& method_call) { | |||
| 38 | } | 38 | } |
| 39 | 39 | ||
| 40 | void MaxwellDMA::HandleCopy() { | 40 | void MaxwellDMA::HandleCopy() { |
| 41 | LOG_WARNING(HW_GPU, "Requested a DMA copy"); | 41 | LOG_TRACE(HW_GPU, "Requested a DMA copy"); |
| 42 | 42 | ||
| 43 | const GPUVAddr source = regs.src_address.Address(); | 43 | const GPUVAddr source = regs.src_address.Address(); |
| 44 | const GPUVAddr dest = regs.dst_address.Address(); | 44 | const GPUVAddr dest = regs.dst_address.Address(); |