I'm glad someone new is interested in working on ZC. That is good news! :)
Yeah, I've noticed he's been working on various things recently and that you were helping him along, although I haven't looked at any of the commits; I guess I'll do that right now.
...Well that didn't take long.
The last commit was a two-line fix:
Code:
- //m->initd[(ri->d[0]/10000)][(ri->d[1]/10000)] = (value/10000);
+ m->initd[(ri->d[0]/10000) - 1][(ri->d[1]/10000)] = value;
Correct me if I'm wrong, but that looks like overflow to me. :P ...or did I just get (un)lucky with my timing?