From 0c8ed91b36320f437e37ff6dd8bffb45d774a348 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 2 Dec 2015 01:02:58 +0100 Subject: [PATCH] Nits --- gfx/video_texture_c.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gfx/video_texture_c.c b/gfx/video_texture_c.c index 8c6ee7f85e..8f90cdd181 100644 --- a/gfx/video_texture_c.c +++ b/gfx/video_texture_c.c @@ -36,9 +36,9 @@ void gl_load_texture_data(GLuint id, { GLint mag_filter, min_filter; bool want_mipmap = false; - bool use_rgba = video_driver_ctl(RARCH_DISPLAY_CTL_SUPPORTS_RGBA, NULL); - bool rgb32 = (base_size == (sizeof(uint32_t))); - GLenum wrap = gl_wrap_type_to_enum(wrap_type); + bool use_rgba = video_driver_ctl(RARCH_DISPLAY_CTL_SUPPORTS_RGBA, NULL); + bool rgb32 = (base_size == (sizeof(uint32_t))); + GLenum wrap = gl_wrap_type_to_enum(wrap_type); glBindTexture(GL_TEXTURE_2D, id); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, wrap);