aboutsummaryrefslogtreecommitdiff
path: root/engines/director/lingo
diff options
context:
space:
mode:
authorEugene Sandulenko2020-01-01 02:20:31 +0100
committerEugene Sandulenko2020-01-01 02:20:31 +0100
commitd0d7d0899f5878341275d181ff5e89cbfc29bb5e (patch)
tree065ec49cf38aea0eecb840a8f76216243210c47c /engines/director/lingo
parent7995def290ac572c8bdf7f95b07694eeda891409 (diff)
downloadscummvm-rg350-d0d7d0899f5878341275d181ff5e89cbfc29bb5e.tar.gz
scummvm-rg350-d0d7d0899f5878341275d181ff5e89cbfc29bb5e.tar.bz2
scummvm-rg350-d0d7d0899f5878341275d181ff5e89cbfc29bb5e.zip
JANITORIAL: Align table formatting
Diffstat (limited to 'engines/director/lingo')
-rw-r--r--engines/director/lingo/lingo-code.cpp154
1 files changed, 77 insertions, 77 deletions
diff --git a/engines/director/lingo/lingo-code.cpp b/engines/director/lingo/lingo-code.cpp
index d0805c9662..a4e314a9cc 100644
--- a/engines/director/lingo/lingo-code.cpp
+++ b/engines/director/lingo/lingo-code.cpp
@@ -59,88 +59,88 @@ static struct FuncDescr {
const char *name;
const char *args;
} funcDescr[] = {
- { 0, "STOP", "" },
- { LC::c_xpop, "c_xpop", "" },
- { LC::c_argcpush, "c_argcpush", "i" },
+ { 0, "STOP", "" },
+ { LC::c_xpop, "c_xpop", "" },
+ { LC::c_argcpush, "c_argcpush", "i" },
{ LC::c_argcnoretpush, "c_argcnoretpush", "i" },
- { LC::c_arraypush, "c_arraypush", "i" },
- { LC::c_printtop, "c_printtop", "" },
- { LC::c_intpush, "c_intpush", "i" },
- { LC::c_voidpush, "c_voidpush", "" },
- { LC::c_floatpush, "c_floatpush", "f" },
- { LC::c_stringpush, "c_stringpush", "s" },
- { LC::c_symbolpush, "c_symbolpush", "s" }, // D3
- { LC::c_namepush, "c_namepush", "i" },
- { LC::c_varpush, "c_varpush", "s" },
- { LC::c_setImmediate,"c_setImmediate","i" },
- { LC::c_assign, "c_assign", "" },
- { LC::c_eval, "c_eval", "s" },
- { LC::c_theentitypush,"c_theentitypush","ii" }, // entity, field
+ { LC::c_arraypush, "c_arraypush", "i" },
+ { LC::c_printtop, "c_printtop", "" },
+ { LC::c_intpush, "c_intpush", "i" },
+ { LC::c_voidpush, "c_voidpush", "" },
+ { LC::c_floatpush, "c_floatpush", "f" },
+ { LC::c_stringpush, "c_stringpush", "s" },
+ { LC::c_symbolpush, "c_symbolpush", "s" }, // D3
+ { LC::c_namepush, "c_namepush", "i" },
+ { LC::c_varpush, "c_varpush", "s" },
+ { LC::c_setImmediate, "c_setImmediate", "i" },
+ { LC::c_assign, "c_assign", "" },
+ { LC::c_eval, "c_eval", "s" },
+ { LC::c_theentitypush, "c_theentitypush", "ii" }, // entity, field
{ LC::c_theentityassign,"c_theentityassign","ii" },
{ LC::c_objectfieldpush,"c_objectfieldpush","si" }, // object, field
{ LC::c_objectfieldassign,"c_objectfieldassign","si" },
- { LC::c_swap, "c_swap", "" },
- { LC::c_add, "c_add", "" },
- { LC::c_sub, "c_sub", "" },
- { LC::c_mul, "c_mul", "" },
- { LC::c_div, "c_div", "" },
- { LC::c_mod, "c_mod", "" },
- { LC::c_negate, "c_negate", "" },
- { LC::c_ampersand, "c_ampersand", "" },
- { LC::c_after, "c_after", "" }, // D3
- { LC::c_before, "c_before", "" }, // D3
- { LC::c_concat, "c_concat", "" },
- { LC::c_contains, "c_contains", "" },
- { LC::c_starts, "c_starts", "" },
- { LC::c_intersects, "c_intersects", "" },
- { LC::c_within, "c_within", "" },
- { LC::c_field, "c_field", "" },
- { LC::c_of, "c_of", "" },
- { LC::c_charOf, "c_charOf", "" }, // D3
- { LC::c_charToOf, "c_charToOf", "" }, // D3
- { LC::c_itemOf, "c_itemOf", "" }, // D3
- { LC::c_itemToOf, "c_itemToOf", "" }, // D3
- { LC::c_lineOf, "c_lineOf", "" }, // D3
- { LC::c_lineToOf, "c_lineToOf", "" }, // D3
- { LC::c_wordOf, "c_wordOf", "" }, // D3
- { LC::c_wordToOf, "c_wordToOf", "" }, // D3
- { LC::c_and, "c_and", "" },
- { LC::c_or, "c_or", "" },
- { LC::c_not, "c_not", "" },
- { LC::c_eq, "c_eq", "" },
- { LC::c_neq, "c_neq", "" },
- { LC::c_gt, "c_gt", "" },
- { LC::c_lt, "c_lt", "" },
- { LC::c_ge, "c_ge", "" },
- { LC::c_le, "c_le", "" },
- { LC::c_jump, "c_jump", "i" },
- { LC::c_jumpifz, "c_jumpifz", "i" },
+ { LC::c_swap, "c_swap", "" },
+ { LC::c_add, "c_add", "" },
+ { LC::c_sub, "c_sub", "" },
+ { LC::c_mul, "c_mul", "" },
+ { LC::c_div, "c_div", "" },
+ { LC::c_mod, "c_mod", "" },
+ { LC::c_negate, "c_negate", "" },
+ { LC::c_ampersand, "c_ampersand", "" },
+ { LC::c_after, "c_after", "" }, // D3
+ { LC::c_before, "c_before", "" }, // D3
+ { LC::c_concat, "c_concat", "" },
+ { LC::c_contains, "c_contains", "" },
+ { LC::c_starts, "c_starts", "" },
+ { LC::c_intersects, "c_intersects", "" },
+ { LC::c_within, "c_within", "" },
+ { LC::c_field, "c_field", "" },
+ { LC::c_of, "c_of", "" },
+ { LC::c_charOf, "c_charOf", "" }, // D3
+ { LC::c_charToOf, "c_charToOf", "" }, // D3
+ { LC::c_itemOf, "c_itemOf", "" }, // D3
+ { LC::c_itemToOf, "c_itemToOf", "" }, // D3
+ { LC::c_lineOf, "c_lineOf", "" }, // D3
+ { LC::c_lineToOf, "c_lineToOf", "" }, // D3
+ { LC::c_wordOf, "c_wordOf", "" }, // D3
+ { LC::c_wordToOf, "c_wordToOf", "" }, // D3
+ { LC::c_and, "c_and", "" },
+ { LC::c_or, "c_or", "" },
+ { LC::c_not, "c_not", "" },
+ { LC::c_eq, "c_eq", "" },
+ { LC::c_neq, "c_neq", "" },
+ { LC::c_gt, "c_gt", "" },
+ { LC::c_lt, "c_lt", "" },
+ { LC::c_ge, "c_ge", "" },
+ { LC::c_le, "c_le", "" },
+ { LC::c_jump, "c_jump", "i" },
+ { LC::c_jumpifz, "c_jumpifz", "i" },
{ LC::c_repeatwhilecode,"c_repeatwhilecode","oo" },
- { LC::c_repeatwithcode,"c_repeatwithcode","ooooos" },
- { LC::c_exitRepeat, "c_exitRepeat", "" },
- { LC::c_ifcode, "c_ifcode", "oooi" },
- { LC::c_tellcode, "c_tellcode", "o" },
- { LC::c_tell, "c_tell", "" },
- { LC::c_telldone, "c_telldone", "" },
- { LC::c_whencode, "c_whencode", "os" },
- { LC::c_goto, "c_goto", "" },
- { LC::c_gotoloop, "c_gotoloop", "" },
- { LC::c_gotonext, "c_gotonext", "" },
- { LC::c_gotoprevious,"c_gotoprevious","" },
- { LC::c_play, "c_play", "" },
- { LC::c_playdone, "c_playdone", "" },
- { LC::c_call, "c_call", "si" },
- { LC::c_procret, "c_procret", "" },
- { LC::c_global, "c_global", "s" },
- { LC::c_property, "c_property", "s" },
- { LC::c_instance, "c_instance", "s" },
- { LC::c_open, "c_open", "" },
- { LC::c_hilite, "c_hilite", "" },
- { LC::c_unk, "c_unk", "i" },
- { LC::c_unk1, "c_unk1", "ii" },
- { LC::c_unk2, "c_unk2", "iii" },
- { LC::cb_call, "cb_call", "i" },
- { LC::cb_localcall, "cb_localcall", "i" },
+ { LC::c_repeatwithcode, "c_repeatwithcode", "ooooos" },
+ { LC::c_exitRepeat, "c_exitRepeat", "" },
+ { LC::c_ifcode, "c_ifcode", "oooi" },
+ { LC::c_tellcode, "c_tellcode", "o" },
+ { LC::c_tell, "c_tell", "" },
+ { LC::c_telldone, "c_telldone", "" },
+ { LC::c_whencode, "c_whencode", "os" },
+ { LC::c_goto, "c_goto", "" },
+ { LC::c_gotoloop, "c_gotoloop", "" },
+ { LC::c_gotonext, "c_gotonext", "" },
+ { LC::c_gotoprevious, "c_gotoprevious", "" },
+ { LC::c_play, "c_play", "" },
+ { LC::c_playdone, "c_playdone", "" },
+ { LC::c_call, "c_call", "si" },
+ { LC::c_procret, "c_procret", "" },
+ { LC::c_global, "c_global", "s" },
+ { LC::c_property, "c_property", "s" },
+ { LC::c_instance, "c_instance", "s" },
+ { LC::c_open, "c_open", "" },
+ { LC::c_hilite, "c_hilite", "" },
+ { LC::c_unk, "c_unk", "i" },
+ { LC::c_unk1, "c_unk1", "ii" },
+ { LC::c_unk2, "c_unk2", "iii" },
+ { LC::cb_call, "cb_call", "i" },
+ { LC::cb_localcall, "cb_localcall", "i" },
{ LC::cb_v4theentitypush,"c_v4theentitypush","i" },
{ LC::cb_v4theentitynamepush,"c_v4theentitynamepush","i" },
{ LC::cb_v4theentityassign,"c_v4theentityassign","i" },