diff options
author | FearlessTobi <thm.frey@gmail.com> | 2019-09-22 02:18:57 +0200 |
---|---|---|
committer | FearlessTobi <thm.frey@gmail.com> | 2019-09-22 02:18:57 +0200 |
commit | 366e9003763457cce77fb9959042e8bf5acaf8fe (patch) | |
tree | 5d23bf3347f1a82d1b4f25383717fcc35c6f23e7 /src | |
parent | video_core: Implement RGBX16F PixelFormat (diff) | |
download | yuzu-366e9003763457cce77fb9959042e8bf5acaf8fe.tar yuzu-366e9003763457cce77fb9959042e8bf5acaf8fe.tar.gz yuzu-366e9003763457cce77fb9959042e8bf5acaf8fe.tar.bz2 yuzu-366e9003763457cce77fb9959042e8bf5acaf8fe.tar.lz yuzu-366e9003763457cce77fb9959042e8bf5acaf8fe.tar.xz yuzu-366e9003763457cce77fb9959042e8bf5acaf8fe.tar.zst yuzu-366e9003763457cce77fb9959042e8bf5acaf8fe.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/engines/fermi_2d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/fermi_2d.cpp b/src/video_core/engines/fermi_2d.cpp index 98a8b5337..20672f70e 100644 --- a/src/video_core/engines/fermi_2d.cpp +++ b/src/video_core/engines/fermi_2d.cpp @@ -29,7 +29,7 @@ void Fermi2D::CallMethod(const GPU::MethodCall& method_call) { } void Fermi2D::HandleSurfaceCopy() { - LOG_WARNING(HW_GPU, "Requested a surface copy with operation {}", + LOG_DEBUG(HW_GPU, "Requested a surface copy with operation {}", static_cast<u32>(regs.operation)); // TODO(Subv): Only raw copies are implemented. |