From b60c5d927e6d4a86660937f8426cf557e7e90f7e Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Fri, 5 Aug 2016 07:47:21 +0200 Subject: DIRECTOR: Lingo: Revert adding prefix 'v' to all Symbol types. --- engines/director/lingo/lingo.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'engines/director/lingo/lingo.h') diff --git a/engines/director/lingo/lingo.h b/engines/director/lingo/lingo.h index e71136a4de..8e73e23ba1 100644 --- a/engines/director/lingo/lingo.h +++ b/engines/director/lingo/lingo.h @@ -82,12 +82,12 @@ struct Symbol { /* symbol table entry */ char *name; int type; union { - int i; /* vVAR */ - double f; /* vFLOAT */ - ScriptData *defn; /* vFUNCTION, vPROCEDURE */ - void (*func)(void); /* vBUILTIN */ - Common::String *s; /* vSTRING */ - FloatArray *arr; /* vARRAY, vPOINT, vRECT */ + int i; /* VAR */ + double f; /* FLOAT */ + ScriptData *defn; /* FUNCTION, PROCEDURE */ + void (*func)(void); /* BUILTIN */ + Common::String *s; /* STRING */ + FloatArray *arr; /* ARRAY, POINT, RECT */ } u; int nargs; bool global; @@ -103,10 +103,10 @@ struct Datum { /* interpreter stack type */ double f; Common::String *s; Symbol *sym; - FloatArray *arr; /* vARRAY, vPOINT, vRECT */ + FloatArray *arr; /* ARRAY, POINT, RECT */ } u; - Datum() { u.sym = NULL; type = vVOID; } + Datum() { u.sym = NULL; type = VOID; } double toFloat(); int toInt(); -- cgit v1.2.3