aboutsummaryrefslogtreecommitdiff
path: root/scumm/script.cpp
diff options
context:
space:
mode:
authorMax Horn2002-12-23 18:56:43 +0000
committerMax Horn2002-12-23 18:56:43 +0000
commit897fc9a91b48c2533ad2121415528a4ee802b653 (patch)
tree1490bdd7ae9562e083ed1037a895e37e5a2a9ff7 /scumm/script.cpp
parent6f5a18228dd9024ee13645710222abdebcc61325 (diff)
downloadscummvm-rg350-897fc9a91b48c2533ad2121415528a4ee802b653.tar.gz
scummvm-rg350-897fc9a91b48c2533ad2121415528a4ee802b653.tar.bz2
scummvm-rg350-897fc9a91b48c2533ad2121415528a4ee802b653.zip
and more V8. Now we again hit the charset limit, but this time caused by the script itself :-)
svn-id: r6077
Diffstat (limited to 'scumm/script.cpp')
-rw-r--r--scumm/script.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/scumm/script.cpp b/scumm/script.cpp
index a70a5b81c7..d21b0b8797 100644
--- a/scumm/script.cpp
+++ b/scumm/script.cpp
@@ -1063,17 +1063,6 @@ int Scumm::getArrayId()
return -1;
}
-void Scumm::arrayop_1(int a, byte *ptr)
-{
- ArrayHeader *ah;
- int r;
- int len = getStringLen(ptr);
-
- r = defineArray(a, 4, 0, len);
- ah = (ArrayHeader *)getResourceAddress(rtString, r);
- copyString(ah->data, ptr, len);
-}
-
void Scumm::copyString(byte *dst, byte *src, int len)
{
if (!src) {