From 897e1ad79c7a2d8254c7f23c41a287edc7f31280 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 20 Apr 2008 02:39:48 -0400 Subject: [PATCH] Fixed infinite recursion. (I had called blah_EXPP() from blah_EXPP(), instead of calling blah_EXP()...) --HG-- branch : trunk --- mojoshader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mojoshader.c b/mojoshader.c index 62a81e72..7e5528a2 100644 --- a/mojoshader.c +++ b/mojoshader.c @@ -2686,7 +2686,7 @@ static void emit_GLSL_TEXM3X3VSPEC(Context *ctx) static void emit_GLSL_EXPP(Context *ctx) { // !!! FIXME: msdn's asm docs don't list this opcode, I'll have to check the driver documentation. - emit_GLSL_EXPP(ctx); // I guess this is just partial precision EXP? + emit_GLSL_EXP(ctx); // I guess this is just partial precision EXP? } // emit_GLSL_EXPP static void emit_GLSL_LOGP(Context *ctx)