Mercurial > audlegacy
changeset 4383:5794aa593490
Renamed TUP_MAX_VAR to TUPLEZ_MAX_VARS.
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Fri, 28 Mar 2008 09:05:21 +0200 |
parents | 53ed80a5b205 |
children | db1c0a24e100 |
files | src/audacious/tuple_compiler.h |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/audacious/tuple_compiler.h Fri Mar 28 09:04:59 2008 +0200 +++ b/src/audacious/tuple_compiler.h Fri Mar 28 09:05:21 2008 +0200 @@ -25,7 +25,7 @@ #include "tuple.h" -#define TUP_MAX_VARS (4) +#define TUPLEZ_MAX_VARS (4) enum { @@ -78,8 +78,8 @@ typedef struct _TupleEvalNode { gint opcode; /* operator, see OP_ enums */ - gint var[TUP_MAX_VARS]; /* tuple / global variable references */ - gboolean global[TUP_MAX_VARS]; + gint var[TUPLEZ_MAX_VARS]; /* tuple / global variable references */ + gboolean global[TUPLEZ_MAX_VARS]; gchar *text; /* raw text, if any (OP_RAW) */ gint function, expression; /* for OP_FUNCTION and OP_EXPRESSION */ struct _TupleEvalNode *children, *next, *prev; /* children of this struct, and pointer to next node. */