(svn r2561) Fix: Remove {COMMA16} and {COMMA8}. Those are not needed anymore.

This commit is contained in:
ludde
2005-07-13 20:35:52 +00:00
parent 6013b327f7
commit a1ec4aff77
2 changed files with 5 additions and 6 deletions

View File

@@ -413,10 +413,8 @@ static char *DecodeString(char *buff, const char *str)
buff = FormatCommaNumber(buff, GetParamInt32());
break;
case 0x7C: // {COMMA16}
buff = FormatCommaNumber(buff, GetParamInt16());
break;
case 0x7D: // {COMMA8}
buff = FormatCommaNumber(buff, GetParamInt8());
assert(0);
break;
case 0x7E: // {NUMU16}
buff = FormatNoCommaNumber(buff, GetParamInt16());