From e7a29a440f153f68d156b967d543fdf250b46b26 Mon Sep 17 00:00:00 2001 From: Spoike Date: Sun, 22 Jun 2014 03:14:07 +0000 Subject: [PATCH] fix crashes on ATI cards. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4691 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/gl/gl_model.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/gl/gl_model.h b/engine/gl/gl_model.h index 71c23b5b1..5d41120a1 100644 --- a/engine/gl/gl_model.h +++ b/engine/gl/gl_model.h @@ -51,7 +51,7 @@ typedef enum { } shadersort_t; #define MAX_BONES 256 -#define MAX_GPU_BONES 256 +#define MAX_GPU_BONES 64 //ATI drivers bug out and start to crash if you put this at 128. FIXME: make dynamic. struct doll_s; void rag_flushdolls(qboolean force); void rag_freedoll(struct doll_s *doll);