wined3d: Increase the size of glsl_src_param_t.param_str.

It constains the register name plus potential modifiers, so it should be
larger than reg_name instead of smaller.
This commit is contained in:
Henri Verbeet 2009-05-06 17:59:22 +02:00 committed by Alexandre Julliard
parent 690d666de5
commit 69861b8fed

View file

@ -53,7 +53,7 @@ typedef struct {
typedef struct {
char reg_name[150];
char param_str[100];
char param_str[200];
} glsl_src_param_t;
typedef struct {