aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/builtin.cpp
diff options
context:
space:
mode:
authorSimei Yin2018-05-31 22:38:26 +0200
committerSimei Yin2018-05-31 23:15:09 +0200
commit399ff4788cd5a03d37ac1945ed76bc47bc8d4218 (patch)
tree73161e19bb316847fa35b9c4a96271358ae6e64f /engines/sludge/builtin.cpp
parent746fb3819faa7239b41c06492583bbe4296b5e02 (diff)
downloadscummvm-rg350-399ff4788cd5a03d37ac1945ed76bc47bc8d4218.tar.gz
scummvm-rg350-399ff4788cd5a03d37ac1945ed76bc47bc8d4218.tar.bz2
scummvm-rg350-399ff4788cd5a03d37ac1945ed76bc47bc8d4218.zip
SLUDGE: Move fastarray functions to struct Variable
Diffstat (limited to 'engines/sludge/builtin.cpp')
-rw-r--r--engines/sludge/builtin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sludge/builtin.cpp b/engines/sludge/builtin.cpp
index 6c98ca0e3d..61f1726ec0 100644
--- a/engines/sludge/builtin.cpp
+++ b/engines/sludge/builtin.cpp
@@ -2329,7 +2329,7 @@ builtIn(makeFastArray) {
UNUSEDALL
switch (fun->stack->thisVar.varType) {
case SVT_STACK: {
- bool success = makeFastArrayFromStack(fun->reg, fun->stack->thisVar.varData.theStack);
+ bool success = fun->reg.makeFastArrayFromStack(fun->stack->thisVar.varData.theStack);
trimStack(fun->stack);
return success ? BR_CONTINUE : BR_ERROR;
}
@@ -2338,7 +2338,7 @@ builtIn(makeFastArray) {
case SVT_INT: {
int i = fun->stack->thisVar.varData.intValue;
trimStack(fun->stack);
- return makeFastArraySize(fun->reg, i) ? BR_CONTINUE : BR_ERROR;
+ return fun->reg.makeFastArraySize(i) ? BR_CONTINUE : BR_ERROR;
}
break;