summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-07-18 14:31:38 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2019-07-18 14:31:38 +0200
commit3a3fee5abff816758ea5070d54ed8f6252dc451e (patch)
treec045cf294bbbd57ca1c99833973301527e9fa5bf
parentGl_Texture_Cache: Remove assert on component type in GetFormatTuple (diff)
downloadyuzu-3a3fee5abff816758ea5070d54ed8f6252dc451e.tar
yuzu-3a3fee5abff816758ea5070d54ed8f6252dc451e.tar.gz
yuzu-3a3fee5abff816758ea5070d54ed8f6252dc451e.tar.bz2
yuzu-3a3fee5abff816758ea5070d54ed8f6252dc451e.tar.lz
yuzu-3a3fee5abff816758ea5070d54ed8f6252dc451e.tar.xz
yuzu-3a3fee5abff816758ea5070d54ed8f6252dc451e.tar.zst
yuzu-3a3fee5abff816758ea5070d54ed8f6252dc451e.zip
-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 afb9578d0..758c154cb 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) {
}
void MaxwellDMA::HandleCopy() {
- LOG_WARNING(HW_GPU, "Requested a DMA copy");
+ LOG_TRACE(HW_GPU, "Requested a DMA copy");
const GPUVAddr source = regs.src_address.Address();
const GPUVAddr dest = regs.dst_address.Address();