From 0cb6ed7b29cb7f0f72fe384c22e21ec5cc5ed53f Mon Sep 17 00:00:00 2001 From: Brad Parker Date: Thu, 21 Feb 2019 15:37:53 -0500 Subject: [PATCH] remove tabs --- gfx/drivers/gl1.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gfx/drivers/gl1.c b/gfx/drivers/gl1.c index 4ff6e0c501..9349c3c355 100644 --- a/gfx/drivers/gl1.c +++ b/gfx/drivers/gl1.c @@ -613,7 +613,7 @@ static bool gl1_gfx_frame(void *data, const void *frame, if (bits == 32) { unsigned y; - /* copy lines into top-left portion of larger (power-of-two) buffer */ + /* copy lines into top-left portion of larger (power-of-two) buffer */ for (y = 0; y < height; y++) memcpy(gl1_video_buf + ((pot_width * (bits / 8)) * y), (const unsigned char*)frame + (pitch * y), width * (bits / 8)); } @@ -1028,7 +1028,6 @@ static unsigned gl1_wrap_type_to_enum(enum gfx_wrap_type type) return GL_REPEAT; default: return GL_CLAMP; - break; } return 0;