aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2016-08-02 10:23:03 +0300
committerEugene Sandulenko2016-08-03 23:40:36 +0200
commitc8f0b74a635d24be2b7f802290ee6a47ce64e935 (patch)
tree1cc8ab8a4f452638f785c82d87e62a705fdbf026
parentd9db9863ceb1b59ded3388a1e2ad616ababa4735 (diff)
downloadscummvm-rg350-c8f0b74a635d24be2b7f802290ee6a47ce64e935.tar.gz
scummvm-rg350-c8f0b74a635d24be2b7f802290ee6a47ce64e935.tar.bz2
scummvm-rg350-c8f0b74a635d24be2b7f802290ee6a47ce64e935.zip
JANITORIAL: Whitespace fixes
-rw-r--r--engines/director/lingo/lingo-builtins.cpp34
1 files changed, 17 insertions, 17 deletions
diff --git a/engines/director/lingo/lingo-builtins.cpp b/engines/director/lingo/lingo-builtins.cpp
index 312ff6664c..0c103370cf 100644
--- a/engines/director/lingo/lingo-builtins.cpp
+++ b/engines/director/lingo/lingo-builtins.cpp
@@ -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 }
};