From 130a99f6f426aac308f0b93eaacdc4bd3604837d Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 20 Dec 2000 22:03:49 +0000 Subject: [PATCH] undo some of indent's drainbamage --- source/gl_draw.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/source/gl_draw.c b/source/gl_draw.c index 28f96ab..f8163be 100644 --- a/source/gl_draw.c +++ b/source/gl_draw.c @@ -1170,10 +1170,8 @@ GL_Upload32 (unsigned int *data, int width, int height, qboolean mipmap, scaled_width = min (scaled_width, gl_max_size->int_val); scaled_height = min (scaled_height, gl_max_size->int_val); - if (! - (scaled = - malloc (scaled_width * scaled_height * - sizeof (GLuint)))) Sys_Error ("GL_LoadTexture: too big"); + if (!(scaled = malloc (scaled_width * scaled_height * sizeof (GLuint)))) + Sys_Error ("GL_LoadTexture: too big"); samples = alpha ? gl_alpha_format : gl_solid_format;