(svn r10262) -Fix (r10258): some places that needed to be changed to uint64 were hidden/forgotten, which caused memory corruptions and that in caused all kinds of assertions to trigger.

This commit is contained in:
rubidium
2007-06-21 19:08:47 +00:00
parent fb7964e902
commit 0b34c9aefe
7 changed files with 15 additions and 15 deletions

View File

@@ -217,7 +217,7 @@ void SetDParamStr(uint n, const char *str)
void InjectDParam(int amount)
{
memmove(_decode_parameters + amount, _decode_parameters, sizeof(_decode_parameters) - amount * sizeof(uint32));
memmove(_decode_parameters + amount, _decode_parameters, sizeof(_decode_parameters) - amount * sizeof(uint64));
}
static const uint32 _divisor_table[] = {