From c613485929e503ef9b71bdc226e9b504f3640e03 Mon Sep 17 00:00:00 2001 From: tma Date: Sun, 6 Nov 2005 00:29:59 +0000 Subject: * Tidy-up of q_platform.h * Introduced Q3_BIG_ENDIAN and Q3_LITTLE_ENDIAN #defines * Changed some stricmp to Q_stricmp so that #define stricmp strcasecmp could be removed git-svn-id: svn://svn.icculus.org/quake3/trunk@287 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/cgame/cg_particles.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'code/cgame') diff --git a/code/cgame/cg_particles.c b/code/cgame/cg_particles.c index 59d8ddc..72c077f 100644 --- a/code/cgame/cg_particles.c +++ b/code/cgame/cg_particles.c @@ -1252,7 +1252,7 @@ void CG_ParticleExplosion (char *animStr, vec3_t origin, vec3_t vel, int duratio // find the animation string for (anim=0; shaderAnimNames[anim]; anim++) { - if (!stricmp( animStr, shaderAnimNames[anim] )) + if (!Q_stricmp( animStr, shaderAnimNames[anim] )) break; } if (!shaderAnimNames[anim]) { -- cgit v1.2.3