summaryrefslogtreecommitdiffstats
path: root/src/video_core/command_processor.cpp
diff options
context:
space:
mode:
authorSean <seanmaas27@gmail.com>2014-10-30 00:12:39 +0100
committerSean <seanmaas27@gmail.com>2014-10-30 01:26:15 +0100
commit9a012ff007df4187c84c01f4e48545d19bd1f918 (patch)
tree1eb367a264392ddf7422470a263b240ccacb4050 /src/video_core/command_processor.cpp
parentMerge pull request #151 from archshift/dyncom-enabled (diff)
downloadyuzu-9a012ff007df4187c84c01f4e48545d19bd1f918.tar
yuzu-9a012ff007df4187c84c01f4e48545d19bd1f918.tar.gz
yuzu-9a012ff007df4187c84c01f4e48545d19bd1f918.tar.bz2
yuzu-9a012ff007df4187c84c01f4e48545d19bd1f918.tar.lz
yuzu-9a012ff007df4187c84c01f4e48545d19bd1f918.tar.xz
yuzu-9a012ff007df4187c84c01f4e48545d19bd1f918.tar.zst
yuzu-9a012ff007df4187c84c01f4e48545d19bd1f918.zip
Diffstat (limited to 'src/video_core/command_processor.cpp')
-rw-r--r--src/video_core/command_processor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/command_processor.cpp b/src/video_core/command_processor.cpp
index a9510fa2e..1ec727698 100644
--- a/src/video_core/command_processor.cpp
+++ b/src/video_core/command_processor.cpp
@@ -102,7 +102,7 @@ static inline void WritePicaReg(u32 id, u32 value, u32 mask) {
(vertex_attribute_formats[i] == 2) ? *(s16*)srcdata :
*(float*)srcdata;
input.attr[i][comp] = float24::FromFloat32(srcval);
- DEBUG_LOG(GPU, "Loaded component %x of attribute %x for vertex %x (index %x) from 0x%08x + 0x%08x + 0x%04x: %f",
+ DEBUG_LOG(GPU, "Loaded component %x of attribute %x for vertex %x (index %x) from 0x%08x + 0x%08lx + 0x%04lx: %f",
comp, i, vertex, index,
attribute_config.GetBaseAddress(),
vertex_attribute_sources[i] - base_address,