(svn r14410) -Codechange: one can't inject a negative number of parameters, so enforce this by using a uint.

This commit is contained in:
rubidium
2008-09-28 13:50:11 +00:00
parent a370f32c15
commit e635df8d53
2 changed files with 3 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ char *InlineString(char *buf, StringID string);
char *GetString(char *buffr, StringID string, const char *last);
const char *GetStringPtr(StringID string);
void InjectDParam(int amount);
void InjectDParam(uint amount);
static inline void SetDParamX(uint64 *s, uint n, uint64 v)
{