Skip to content

Commit

Permalink
DIRECTOR: Lingo: Documented D4 "Time" Lingo
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Feb 9, 2017
1 parent 0b4b073 commit d87cddc
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions engines/director/lingo/lingo-builtins.cpp
Expand Up @@ -98,7 +98,7 @@ static struct BuiltinProto {
{ "abort", Lingo::b_abort, 0, 0, false }, // D4 c
{ "continue", Lingo::b_continue, 0, 0, false }, // D2 c
{ "dontPassEvent", Lingo::b_dontPassEvent, 0, 0, false }, // D2 c
{ "delay", Lingo::b_delay, 1, 1, false }, // D2
{ "delay", Lingo::b_delay, 1, 1, false }, // D2 c
{ "do", Lingo::b_do, 1, 1, false }, // D2 c
{ "halt", Lingo::b_halt, 0, 0, false }, // D4 c
{ "nothing", Lingo::b_nothing, 0, 0, false }, // D2 c
Expand All @@ -112,7 +112,7 @@ static struct BuiltinProto {
{ "quit", Lingo::b_quit, 0, 0, false }, // D2 c
{ "restart", Lingo::b_restart, 0, 0, false }, // D2 c
{ "shutDown", Lingo::b_shutDown, 0, 0, false }, // D2 c
{ "startTimer", Lingo::b_startTimer, 0, 0, false }, // D2
{ "startTimer", Lingo::b_startTimer, 0, 0, false }, // D2 c
// when keyDown // D2
// when mouseDown // D2
// when mouseUp // D2
Expand All @@ -129,8 +129,8 @@ static struct BuiltinProto {
{ "alert", Lingo::b_alert, 1, 1, false }, // D2 c
{ "birth", Lingo::b_birth, -1,0, false }, // D4 f
{ "cursor", Lingo::b_cursor, 1, 1, false }, // D2 c
{ "framesToHMS", Lingo::b_framesToHMS, 4, 4, false }, // D3
{ "HMStoFrames", Lingo::b_HMStoFrames, 4, 4, false }, // D3
{ "framesToHMS", Lingo::b_framesToHMS, 4, 4, false }, // D3 f
{ "HMStoFrames", Lingo::b_HMStoFrames, 4, 4, false }, // D3 f
{ "param", Lingo::b_param, 1, 1, true }, // D4 f
{ "printFrom", Lingo::b_printFrom, -1,0, false }, // D2 c
// put // D2
Expand Down Expand Up @@ -237,6 +237,7 @@ static const char *builtinFunctions[] = {
"findPos",
"findPosNear",
"float",
"framesToHMS",
"getaProp",
"getAt",
"getLast",
Expand All @@ -245,6 +246,7 @@ static const char *builtinFunctions[] = {
"getPos",
"getProp",
"getPropAt",
"HMStoFrames",
"ilk",
"inflate",
"inside",
Expand Down

0 comments on commit d87cddc

Please sign in to comment.