[ruamoko] Use the right index in disabled code

I have no idea why the code is disabled (especially considering the
comment), so leaving it that way for now, but this makes the code
compile when enabled.
This commit is contained in:
Bill Currie 2021-12-23 21:38:05 +09:00
parent 2b25748cc4
commit bcf80650f3

View file

@ -323,7 +323,7 @@
cause something else to happen).
*/
tmp = _objs[--count];
_objs[i] = nil;
_objs[count] = nil;
[tmp release];
}
#else