Use array slot and not array number.

svn-id: r14466
This commit is contained in:
Travis Howell 2004-08-05 09:32:03 +00:00
parent 89f838be67
commit c6dcbd8eca

View file

@ -466,7 +466,7 @@ void ScummEngine_v6::nukeArray(int a) {
if (data)
nukeResource(rtString, data);
if (_features & GF_HUMONGOUS)
_arraySlot[a] = 0;
_arraySlot[data] = 0;
writeVar(a, 0);
}