aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/script.cpp
diff options
context:
space:
mode:
authorGregory Montoir2007-05-29 20:22:20 +0000
committerGregory Montoir2007-05-29 20:22:20 +0000
commit73210b4aa3f27402e66ec778c20ab21353d31cc1 (patch)
treec6e978eb54291ca76b3d53545d3ff10c13deaf4e /engines/cine/script.cpp
parentf66fb127186b8b944a8426954e4f08f37ae65243 (diff)
downloadscummvm-rg350-73210b4aa3f27402e66ec778c20ab21353d31cc1.tar.gz
scummvm-rg350-73210b4aa3f27402e66ec778c20ab21353d31cc1.tar.bz2
scummvm-rg350-73210b4aa3f27402e66ec778c20ab21353d31cc1.zip
added code for freePartRange, freePartEntry and freeOverlay (also renamed some functions and variables).
svn-id: r27006
Diffstat (limited to 'engines/cine/script.cpp')
-rw-r--r--engines/cine/script.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cine/script.cpp b/engines/cine/script.cpp
index 738ade2834..cf4ade58ca 100644
--- a/engines/cine/script.cpp
+++ b/engines/cine/script.cpp
@@ -1434,7 +1434,7 @@ void o1_freePartRange() {
assert(startIdx + numIdx <= NUM_MAX_ANIMDATA);
debugC(5, kCineDebugScript, "Line: %d: freePartRange(%d,%d)", _currentLine, startIdx, numIdx);
- freePartRange(startIdx, numIdx);
+ freeAnimDataRange(startIdx, numIdx);
}
void o1_unloadAllMasks() {