and more V8. Now we again hit the charset limit, but this time caused by the script itself :-)

svn-id: r6077
This commit is contained in:
Max Horn
2002-12-23 18:56:43 +00:00
parent 6f5a18228d
commit 897fc9a91b
3 changed files with 50 additions and 14 deletions
-11
View File
@@ -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) {