From 4b6f269963f51e834268423527432e1824111b87 Mon Sep 17 00:00:00 2001 From: Spoike Date: Tue, 21 Jul 2009 00:43:10 +0000 Subject: [PATCH] gl_doubleeyes. evil hacks courtesy of id. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3326 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/gl/gl_alias.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/engine/gl/gl_alias.c b/engine/gl/gl_alias.c index 8c33e2817..a12b00a9c 100644 --- a/engine/gl/gl_alias.c +++ b/engine/gl/gl_alias.c @@ -1249,6 +1249,12 @@ void R_DrawGAliasModel (entity_t *e) -scale_origin[1], -scale_origin[2]); } + else if (!strcmp(clmodel->name, "progs/eyes.mdl")) + { + // double size of eyes, since they are really hard to see in gl + qglTranslatef (0, 0, 0 - (22 + 8)); + qglScalef (2, 2, 2); + } if (!ruleset_allow_larger_models.value && clmodel->clampscale != 1) { //possibly this should be on a per-frame basis, but that's a real pain to do