diff options
| author | 2018-03-24 23:22:19 -0400 | |
|---|---|---|
| committer | 2018-03-26 21:17:01 -0400 | |
| commit | 527ce12ce4288e0f190002ac2355b8ed471b7a8d (patch) | |
| tree | d5b81bc123e0a6b219a611840fc1874c91422479 /src | |
| parent | rasterizer: Rename DrawTriangles to DrawArrays. (diff) | |
| download | yuzu-527ce12ce4288e0f190002ac2355b8ed471b7a8d.tar.gz yuzu-527ce12ce4288e0f190002ac2355b8ed471b7a8d.tar.xz yuzu-527ce12ce4288e0f190002ac2355b8ed471b7a8d.zip | |
maxwel_to_gl: Fix string formatting in log statements.
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/renderer_opengl/maxwell_to_gl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/renderer_opengl/maxwell_to_gl.h b/src/video_core/renderer_opengl/maxwell_to_gl.h index 54859b5a0..003ee2fd9 100644 --- a/src/video_core/renderer_opengl/maxwell_to_gl.h +++ b/src/video_core/renderer_opengl/maxwell_to_gl.h | |||
| @@ -23,7 +23,7 @@ inline GLenum VertexType(Maxwell::VertexAttribute attrib) { | |||
| 23 | return GL_UNSIGNED_BYTE; | 23 | return GL_UNSIGNED_BYTE; |
| 24 | } | 24 | } |
| 25 | 25 | ||
| 26 | LOG_CRITICAL(Render_OpenGL, "Unimplemented vertex size=%s", attrib.SizeString()); | 26 | LOG_CRITICAL(Render_OpenGL, "Unimplemented vertex size=%s", attrib.SizeString().c_str()); |
| 27 | UNREACHABLE(); | 27 | UNREACHABLE(); |
| 28 | return {}; | 28 | return {}; |
| 29 | } | 29 | } |
| @@ -32,7 +32,7 @@ inline GLenum VertexType(Maxwell::VertexAttribute attrib) { | |||
| 32 | return GL_FLOAT; | 32 | return GL_FLOAT; |
| 33 | } | 33 | } |
| 34 | 34 | ||
| 35 | LOG_CRITICAL(Render_OpenGL, "Unimplemented vertex type=%s", attrib.TypeString()); | 35 | LOG_CRITICAL(Render_OpenGL, "Unimplemented vertex type=%s", attrib.TypeString().c_str()); |
| 36 | UNREACHABLE(); | 36 | UNREACHABLE(); |
| 37 | return {}; | 37 | return {}; |
| 38 | } | 38 | } |