summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/hw/gpu.cpp6
-rw-r--r--src/video_core/renderer_opengl/renderer_opengl.cpp2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hw/gpu.cpp b/src/core/hw/gpu.cpp
index d18ff7625..c00be2a83 100644
--- a/src/core/hw/gpu.cpp
+++ b/src/core/hw/gpu.cpp
@@ -142,7 +142,7 @@ inline void Write(u32 addr, const T data) {
142 for (u32* ptr = start; ptr < end; ++ptr) 142 for (u32* ptr = start; ptr < end; ++ptr)
143 *ptr = bswap32(config.value); // TODO: This is just a workaround to missing framebuffer format emulation 143 *ptr = bswap32(config.value); // TODO: This is just a workaround to missing framebuffer format emulation
144 144
145 DEBUG_LOG(GPU, "MemoryFill from %x to %x", config.GetStartAddress(), config.GetEndAddress()); 145 DEBUG_LOG(GPU, "MemoryFill from 0x%08x to 0x%08x", config.GetStartAddress(), config.GetEndAddress());
146 } 146 }
147 break; 147 break;
148 } 148 }
@@ -207,7 +207,7 @@ inline void Write(u32 addr, const T data) {
207 } 207 }
208 } 208 }
209 209
210 DEBUG_LOG(GPU, "DisplayTriggerTransfer: %x bytes from %x(%xx%x)-> %x(%xx%x), dst format %x", 210 DEBUG_LOG(GPU, "DisplayTriggerTransfer: 0x%08x bytes from 0x%08x(%dx%d)-> 0x%08x(%dx%d), dst format %x",
211 config.output_height * config.output_width * 4, 211 config.output_height * config.output_width * 4,
212 config.GetPhysicalInputAddress(), (int)config.input_width, (int)config.input_height, 212 config.GetPhysicalInputAddress(), (int)config.input_width, (int)config.input_height,
213 config.GetPhysicalOutputAddress(), (int)config.output_width, (int)config.output_height, 213 config.GetPhysicalOutputAddress(), (int)config.output_width, (int)config.output_height,
@@ -222,7 +222,7 @@ inline void Write(u32 addr, const T data) {
222 if (config.trigger & 1) 222 if (config.trigger & 1)
223 { 223 {
224 // u32* buffer = (u32*)Memory::GetPointer(config.address << 3); 224 // u32* buffer = (u32*)Memory::GetPointer(config.address << 3);
225 ERROR_LOG(GPU, "Beginning %x bytes of commands from address %x", config.size, config.address << 3); 225 ERROR_LOG(GPU, "Beginning 0x%08x bytes of commands from address 0x%08x", config.size, config.address << 3);
226 // TODO: Process command list! 226 // TODO: Process command list!
227 } 227 }
228 break; 228 break;
diff --git a/src/video_core/renderer_opengl/renderer_opengl.cpp b/src/video_core/renderer_opengl/renderer_opengl.cpp
index 50f820e4a..d0a8ec1da 100644
--- a/src/video_core/renderer_opengl/renderer_opengl.cpp
+++ b/src/video_core/renderer_opengl/renderer_opengl.cpp
@@ -87,7 +87,7 @@ void RendererOpenGL::RenderXFB(const common::Rect& src_rect, const common::Rect&
87 ? framebuffer_sub.address_left2 87 ? framebuffer_sub.address_left2
88 : framebuffer_sub.address_left1; 88 : framebuffer_sub.address_left1;
89 89
90 DEBUG_LOG(GPU, "RenderXFB: %x bytes from %x(%xx%x), fmt %x", 90 DEBUG_LOG(GPU, "RenderXFB: 0x%08x bytes from 0x%08x(%dx%d), fmt %x",
91 framebuffer_top.stride * framebuffer_top.height, 91 framebuffer_top.stride * framebuffer_top.height,
92 GPU::GetFramebufferAddr(active_fb_top), (int)framebuffer_top.width, 92 GPU::GetFramebufferAddr(active_fb_top), (int)framebuffer_top.width,
93 (int)framebuffer_top.height, (int)framebuffer_top.format); 93 (int)framebuffer_top.height, (int)framebuffer_top.format);