From cebad5a51002c9a77bcdc3ffb735fbbbb2909fc7 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 23 Aug 2009 01:43:14 -0400 Subject: [PATCH] Removed some debug code. --- mojoshader_compiler.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/mojoshader_compiler.c b/mojoshader_compiler.c index 62c775e7..aae9f474 100644 --- a/mojoshader_compiler.c +++ b/mojoshader_compiler.c @@ -40,13 +40,6 @@ static int is_usertype(const Context *ctx) int i; for (i = 0; i < ctx->usertype_count; i++) { - -printf(" xxx check '"); -fwrite(ctx->token, ctx->tokenlen, 1, stdout); -printf("' vs '"); -fwrite(ctx->usertypes[i].token, ctx->usertypes[i].tokenlen, 1, stdout); -printf("'\n"); - if (ctx->usertypes[i].tokenlen == ctx->tokenlen) { if (memcmp(ctx->usertypes[i].token, ctx->token, ctx->tokenlen)==0)