diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-06-14 22:40:04 +0200 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-06-21 02:38:34 +0200 |
commit | 082740d34db0996a0af73d7680c57e1abb31c712 (patch) | |
tree | bcc9ecb6af93114eaf008f8a576b1a99b9f189fe /src/video_core/engines/maxwell_dma.cpp | |
parent | texture_cache: Initialize all siblings to invalid pixel format. (diff) | |
download | yuzu-082740d34db0996a0af73d7680c57e1abb31c712.tar yuzu-082740d34db0996a0af73d7680c57e1abb31c712.tar.gz yuzu-082740d34db0996a0af73d7680c57e1abb31c712.tar.bz2 yuzu-082740d34db0996a0af73d7680c57e1abb31c712.tar.lz yuzu-082740d34db0996a0af73d7680c57e1abb31c712.tar.xz yuzu-082740d34db0996a0af73d7680c57e1abb31c712.tar.zst yuzu-082740d34db0996a0af73d7680c57e1abb31c712.zip |
Diffstat (limited to 'src/video_core/engines/maxwell_dma.cpp')
-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 3a5dfef0c..afb9578d0 100644 --- a/src/video_core/engines/maxwell_dma.cpp +++ b/src/video_core/engines/maxwell_dma.cpp @@ -111,7 +111,7 @@ void MaxwellDMA::HandleCopy() { memory_manager.WriteBlock(dest, write_buffer.data(), dst_size); } else { - ASSERT(regs.dst_params.BlockDepth() == 1); + ASSERT(regs.dst_params.BlockDepth() == 0); const u32 src_bytes_per_pixel = regs.src_pitch / regs.x_count; |