aboutsummaryrefslogtreecommitdiff
path: root/engines/director/lingo/lingo.h
diff options
context:
space:
mode:
authorEugene Sandulenko2016-08-05 07:47:21 +0200
committerEugene Sandulenko2016-08-05 07:49:00 +0200
commitb60c5d927e6d4a86660937f8426cf557e7e90f7e (patch)
tree50191cf04f570db6b4dd27506f42de70e61800d0 /engines/director/lingo/lingo.h
parent8a6b82a91978bd3b35a8e5dbfd842710b65f2a59 (diff)
downloadscummvm-rg350-b60c5d927e6d4a86660937f8426cf557e7e90f7e.tar.gz
scummvm-rg350-b60c5d927e6d4a86660937f8426cf557e7e90f7e.tar.bz2
scummvm-rg350-b60c5d927e6d4a86660937f8426cf557e7e90f7e.zip
DIRECTOR: Lingo: Revert adding prefix 'v' to all Symbol types.
Diffstat (limited to 'engines/director/lingo/lingo.h')
-rw-r--r--engines/director/lingo/lingo.h16
1 files changed, 8 insertions, 8 deletions
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();