Skip to content

Commit

Permalink
Corrected function name coding style.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Apr 4, 2009
1 parent 807fb25 commit fb5c6ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mojoshader_compiler.c
Expand Up @@ -50,7 +50,7 @@ static int is_semantic(const Context *ctx)
} // is_semantic


static int ConvertToLemonToken(const Context *ctx)
static int convert_to_lemon_token(const Context *ctx)
{
switch (ctx->tokenval)
{
Expand Down Expand Up @@ -302,7 +302,7 @@ static int ConvertToLemonToken(const Context *ctx)
} // switch

return 0;
}
} // convert_to_lemon_token


void MOJOSHADER_compile(const char *filename,
Expand Down Expand Up @@ -331,7 +331,7 @@ void MOJOSHADER_compile(const char *filename,
ctx.token = preprocessor_nexttoken(ctx.preprocessor,
&ctx.tokenlen,
&ctx.tokenval);
ParseHLSL(pParser, ConvertToLemonToken(&ctx), 0, 0);
ParseHLSL(pParser, convert_to_lemon_token(&ctx), 0, 0);
} while (ctx.tokenval != TOKEN_EOI);
ParseHLSLFree(pParser, f, d);
}
Expand Down

0 comments on commit fb5c6ee

Please sign in to comment.