Skip to content

Commit

Permalink
JANITORIAL: Whitespace fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Aug 3, 2016
1 parent d9db986 commit c8f0b74
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions engines/director/lingo/lingo-builtins.cpp
Expand Up @@ -30,29 +30,29 @@ static struct BuiltinProto {
int nparams;
} builtins[] = {
// Math
{ "abs", Lingo::b_abs, 1},
{ "atan", Lingo::b_atan, 1},
{ "cos", Lingo::b_cos, 1},
{ "exp", Lingo::b_exp, 1},
{ "float", Lingo::b_float, 1},
{ "integer",Lingo::b_integer, 1},
{ "log", Lingo::b_log, 1},
{ "pi", Lingo::b_pi, 0},
{ "power", Lingo::b_power, 2},
{ "random", Lingo::b_random, 1},
{ "sin", Lingo::b_sin, 1},
{ "sqrt", Lingo::b_sqrt, 1},
{ "tan", Lingo::b_tan, 1},
{ "abs", Lingo::b_abs, 1 },
{ "atan", Lingo::b_atan, 1 },
{ "cos", Lingo::b_cos, 1 },
{ "exp", Lingo::b_exp, 1 },
{ "float", Lingo::b_float, 1 },
{ "integer",Lingo::b_integer, 1 },
{ "log", Lingo::b_log, 1 },
{ "pi", Lingo::b_pi, 0 },
{ "power", Lingo::b_power, 2 },
{ "random", Lingo::b_random, 1 },
{ "sin", Lingo::b_sin, 1 },
{ "sqrt", Lingo::b_sqrt, 1 },
{ "tan", Lingo::b_tan, 1 },
// String
{ "chars", Lingo::b_chars, 3},
{ "length", Lingo::b_length, 1},
{ "string", Lingo::b_string, 1},
{ "chars", Lingo::b_chars, 3 },
{ "length", Lingo::b_length, 1 },
{ "string", Lingo::b_string, 1 },
// Misc
{ "dontpassevent", Lingo::b_dontpassevent, -1 },
{ "updatestage", Lingo::b_updatestage, -1 },
{ "ilk", Lingo::b_ilk, 1 },
// point
{ "point", Lingo::b_point, 2},
{ "point", Lingo::b_point, 2 },
{ 0, 0, 0 }
};

Expand Down

0 comments on commit c8f0b74

Please sign in to comment.