summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp
diff options
context:
space:
mode:
authorN00byKing <N00byKing@hotmail.de>2018-03-19 17:07:08 +0100
committerN00byKing <N00byKing@hotmail.de>2018-03-19 17:07:08 +0100
commitef875d6a356fef22d52ec2cdf2a326297740ff66 (patch)
tree8565762859d7be0329fb5991819b8381c690527d /src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp
parentMerge pull request #251 from Subv/tic_tsc (diff)
downloadyuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar
yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.gz
yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.bz2
yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.lz
yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.xz
yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.zst
yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp b/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp
index 7674d332d..e48f13fa1 100644
--- a/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp
+++ b/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp
@@ -23,7 +23,7 @@ void nvdisp_disp0::flip(u32 buffer_handle, u32 offset, u32 format, u32 width, u3
u32 stride, NVFlinger::BufferQueue::BufferTransformFlags transform) {
VAddr addr = nvmap_dev->GetObjectAddress(buffer_handle);
LOG_WARNING(Service,
- "Drawing from address %llx offset %08X Width %u Height %u Stride %u Format %u",
+ "Drawing from address %lx offset %08X Width %u Height %u Stride %u Format %u",
addr, offset, width, height, stride, format);
using PixelFormat = RendererBase::FramebufferInfo::PixelFormat;