summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2020-02-18 21:51:42 +0100
committerFernando Sahmkow <fsahmkow27@gmail.com>2020-04-22 17:36:04 +0200
commit084ceb925acad470b69467d64e4dfbb3bd7ef3f1 (patch)
tree3e4dcc3a3671b85cb3ac5f812159974c006e3c47 /src/video_core/engines
parentMerge pull request #3714 from lioncash/copies (diff)
downloadyuzu-084ceb925acad470b69467d64e4dfbb3bd7ef3f1.tar
yuzu-084ceb925acad470b69467d64e4dfbb3bd7ef3f1.tar.gz
yuzu-084ceb925acad470b69467d64e4dfbb3bd7ef3f1.tar.bz2
yuzu-084ceb925acad470b69467d64e4dfbb3bd7ef3f1.tar.lz
yuzu-084ceb925acad470b69467d64e4dfbb3bd7ef3f1.tar.xz
yuzu-084ceb925acad470b69467d64e4dfbb3bd7ef3f1.tar.zst
yuzu-084ceb925acad470b69467d64e4dfbb3bd7ef3f1.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/maxwell_dma.cpp2
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 c2610f992..32b04e31e 100644
--- a/src/video_core/engines/maxwell_dma.cpp
+++ b/src/video_core/engines/maxwell_dma.cpp
@@ -136,7 +136,7 @@ void MaxwellDMA::HandleCopy() {
write_buffer.resize(dst_size);
}
- if (Settings::values.use_accurate_gpu_emulation) {
+ if (Settings::IsGPULevelExtreme()) {
memory_manager.ReadBlock(source, read_buffer.data(), src_size);
memory_manager.ReadBlock(dest, write_buffer.data(), dst_size);
} else {