(svn r16677) -Codechange: Dimension width and height are unsigned.

This commit is contained in:
alberth
2009-06-27 20:53:45 +00:00
parent 4c3f480f92
commit c52fe937d5
9 changed files with 29 additions and 29 deletions

View File

@@ -1210,7 +1210,7 @@ static char *GetSpecialNameString(char *buff, int ind, int64 *argv, const char *
if (IsInsideMM(ind, (SPECSTR_RESOLUTION_START - 0x70E4), (SPECSTR_RESOLUTION_END - 0x70E4) + 1)) {
int i = ind - (SPECSTR_RESOLUTION_START - 0x70E4);
buff += seprintf(
buff, last, "%dx%d", _resolutions[i].width, _resolutions[i].height
buff, last, "%ux%u", _resolutions[i].width, _resolutions[i].height
);
return buff;
}