(svn r2566) Rename COMMA{8,16,32} to just COMMA, because it's the same anyway

This commit is contained in:
tron
2005-07-14 15:10:20 +00:00
parent 53851d5e77
commit b4f549f4ee
25 changed files with 3853 additions and 3859 deletions

View File

@@ -415,13 +415,9 @@ static char *DecodeString(char *buff, const char *str)
*buff++ = *str++;
*buff++ = *str++;
break;
case 0x7B: // {COMMA32}
case 0x7B: // {COMMA}
buff = FormatCommaNumber(buff, GetParamInt32());
break;
case 0x7C: // {COMMA16}
case 0x7D: // {COMMA8}
assert(0);
break;
case 0x7E: // {NUMU16}, {INT32}
buff = FormatNoCommaNumber(buff, GetParamInt32());
break;