(svn r24908) -Fix [FS#5419]: Allow GSs to pass negative integer string parameters (frosch123)

This commit is contained in:
zuu
2013-01-12 12:48:00 +00:00
parent 7647279d5d
commit 03e088c58b
2 changed files with 2 additions and 2 deletions

View File

@@ -183,7 +183,7 @@ char *ScriptText::_GetEncodedText(char *p, char *lastofp)
p = this->paramt[i]->_GetEncodedText(p, lastofp);
continue;
}
p += seprintf(p, lastofp,":%X", this->parami[i]);
p += seprintf(p, lastofp,":%X", (uint32)this->parami[i]);
}
return p;