From 0bda9e551ef21af5e3a70bdf01a75c464e9d3bbb Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 17 Apr 2008 02:35:56 -0400 Subject: [PATCH] Just adding some whitespace in the GLSL profile's LOOP emitter. --HG-- branch : trunk --- mojoshader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mojoshader.c b/mojoshader.c index eefe358b..6c571678 100644 --- a/mojoshader.c +++ b/mojoshader.c @@ -2351,7 +2351,7 @@ static void emit_GLSL_LOOP(Context *ctx) assert(ctx->source_args[0].regnum == 0); // in case they add aL1 someday. output_line(ctx, "{"); ctx->indent++; - output_line(ctx, "const int aLend = %s.x+%s.y;", varname, varname); + output_line(ctx, "const int aLend = %s.x + %s.y;", varname, varname); output_line(ctx, "for (int aL = %s.y; aL < aLend; aL += %s.z) {", varname, varname); ctx->indent++;