summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/video_core/renderer_opengl/renderer_opengl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/renderer_opengl.cpp b/src/video_core/renderer_opengl/renderer_opengl.cpp
index de61987a8..e59eb7d76 100644
--- a/src/video_core/renderer_opengl/renderer_opengl.cpp
+++ b/src/video_core/renderer_opengl/renderer_opengl.cpp
@@ -259,7 +259,7 @@ void RendererOpenGL::LoadFBToScreenInfo(const FramebufferInfo& framebuffer_info,
259 259
260 LOG_TRACE(Render_OpenGL, "0x%08x bytes from 0x%llx(%dx%d), fmt %x", size_in_bytes, 260 LOG_TRACE(Render_OpenGL, "0x%08x bytes from 0x%llx(%dx%d), fmt %x", size_in_bytes,
261 framebuffer_info.address, framebuffer_info.width, framebuffer_info.height, 261 framebuffer_info.address, framebuffer_info.width, framebuffer_info.height,
262 (int)framebuffer_info.format); 262 (int)framebuffer_info.pixel_format);
263 263
264 // Ensure no bad interactions with GL_UNPACK_ALIGNMENT, which by default 264 // Ensure no bad interactions with GL_UNPACK_ALIGNMENT, which by default
265 // only allows rows to have a memory alignement of 4. 265 // only allows rows to have a memory alignement of 4.