diff options
author | Lioncash <mathew1800@gmail.com> | 2015-04-07 14:14:19 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2015-04-07 16:38:49 +0200 |
commit | 7da90dee42cad7b3c3cabded4c8ce3426144c140 (patch) | |
tree | 1e4bb79c22dddd3c1213c914cb7c1d89414555d5 /src/core/hw | |
parent | Merge pull request #686 from lioncash/vfp (diff) | |
download | yuzu-7da90dee42cad7b3c3cabded4c8ce3426144c140.tar yuzu-7da90dee42cad7b3c3cabded4c8ce3426144c140.tar.gz yuzu-7da90dee42cad7b3c3cabded4c8ce3426144c140.tar.bz2 yuzu-7da90dee42cad7b3c3cabded4c8ce3426144c140.tar.lz yuzu-7da90dee42cad7b3c3cabded4c8ce3426144c140.tar.xz yuzu-7da90dee42cad7b3c3cabded4c8ce3426144c140.tar.zst yuzu-7da90dee42cad7b3c3cabded4c8ce3426144c140.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hw/gpu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hw/gpu.cpp b/src/core/hw/gpu.cpp index 75e040b24..308ea2035 100644 --- a/src/core/hw/gpu.cpp +++ b/src/core/hw/gpu.cpp @@ -136,7 +136,7 @@ inline void Write(u32 addr, const T data) { memcpy(dst_pointer, src_pointer, config.output_width * config.output_height * GPU::Regs::BytesPerPixel(config.output_format)); - LOG_TRACE(HW_GPU, "DisplayTriggerTransfer: 0x%08x bytes from 0x%08x(%ux%u)-> 0x%08x(%ux%u), flags 0x%08X, Raw copy", + LOG_TRACE(HW_GPU, "DisplayTriggerTransfer: 0x%08x bytes from 0x%08x(%ux%u)-> 0x%08x(%ux%u), output format: %x, flags 0x%08X, Raw copy", config.output_height * output_width * GPU::Regs::BytesPerPixel(config.output_format), config.GetPhysicalInputAddress(), config.input_width.Value(), config.input_height.Value(), config.GetPhysicalOutputAddress(), config.output_width.Value(), config.output_height.Value(), |