diff options
| author | bunnei <bunneidev@gmail.com> | 2015-09-02 08:45:01 -0400 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2015-09-02 08:45:01 -0400 |
| commit | d02c9c83f53ea6d3d1b48a754390c316cb697e0e (patch) | |
| tree | 56b71527dd31b102d350f2f5f679c7bffce102a6 /src/video_core/command_processor.cpp | |
| parent | 5e3536f66f5ea1a3e96112ab83b41bb2b1c55f8f (diff) | |
| parent | ba998b85a1ba1e022b70008452e341a19c0242c6 (diff) | |
Merge pull request #1099 from aroulin/video-core-format-specifier
video_core: Fix format specifiers warnings
Diffstat (limited to 'src/video_core/command_processor.cpp')
| -rw-r--r-- | src/video_core/command_processor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/command_processor.cpp b/src/video_core/command_processor.cpp index 682be89ec..6e9cb2586 100644 --- a/src/video_core/command_processor.cpp +++ b/src/video_core/command_processor.cpp @@ -290,7 +290,7 @@ static void WritePicaReg(u32 id, u32 value, u32 mask) { *(float*)srcdata; input.attr[i][comp] = float24::FromFloat32(srcval); - LOG_TRACE(HW_GPU, "Loaded component %x of attribute %x for vertex %x (index %x) from 0x%08x + 0x%08lx + 0x%04lx: %f", + LOG_TRACE(HW_GPU, "Loaded component %x of attribute %x for vertex %x (index %x) from 0x%08x + 0x%08x + 0x%04x: %f", comp, i, vertex, index, attribute_config.GetPhysicalBaseAddress(), vertex_attribute_sources[i] - base_address, |
