File diff r10196:bb8f88b66ccb → r10197:a65cfa37d4ad
src/strings.cpp
Show inline comments
 
@@ -191,8 +191,9 @@ void SetDParamStr(uint n, const char *st
 
	SetDParam(n, (uint64)(size_t)str);
 
}
 

	
 
void InjectDParam(int amount)
 
void InjectDParam(uint amount)
 
{
 
	assert((uint)amount < lengthof(_decode_parameters));
 
	memmove(_decode_parameters + amount, _decode_parameters, sizeof(_decode_parameters) - amount * sizeof(uint64));
 
}