diff options
| author | 2015-04-08 15:41:21 +0200 | |
|---|---|---|
| committer | 2015-04-08 15:41:21 +0200 | |
| commit | 8af5753da52d0ddf9487c94c6138469246399c62 (patch) | |
| tree | b87c06f6245595355136ecd3478b6f43ffcf11d2 /src/core/hw/gpu.cpp | |
| parent | Merge pull request #688 from lioncash/unused (diff) | |
| parent | gpu: Fix a missing format specifier (diff) | |
| download | yuzu-8af5753da52d0ddf9487c94c6138469246399c62.tar.gz yuzu-8af5753da52d0ddf9487c94c6138469246399c62.tar.xz yuzu-8af5753da52d0ddf9487c94c6138469246399c62.zip | |
Merge pull request #689 from lioncash/format
gpu: Fix a missing format specifier
Diffstat (limited to 'src/core/hw/gpu.cpp')
| -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) { | |||
| 136 | memcpy(dst_pointer, src_pointer, config.output_width * config.output_height * | 136 | memcpy(dst_pointer, src_pointer, config.output_width * config.output_height * |
| 137 | GPU::Regs::BytesPerPixel(config.output_format)); | 137 | GPU::Regs::BytesPerPixel(config.output_format)); |
| 138 | 138 | ||
| 139 | LOG_TRACE(HW_GPU, "DisplayTriggerTransfer: 0x%08x bytes from 0x%08x(%ux%u)-> 0x%08x(%ux%u), flags 0x%08X, Raw copy", | 139 | 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", |
| 140 | config.output_height * output_width * GPU::Regs::BytesPerPixel(config.output_format), | 140 | config.output_height * output_width * GPU::Regs::BytesPerPixel(config.output_format), |
| 141 | config.GetPhysicalInputAddress(), config.input_width.Value(), config.input_height.Value(), | 141 | config.GetPhysicalInputAddress(), config.input_width.Value(), config.input_height.Value(), |
| 142 | config.GetPhysicalOutputAddress(), config.output_width.Value(), config.output_height.Value(), | 142 | config.GetPhysicalOutputAddress(), config.output_width.Value(), config.output_height.Value(), |