1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-28 17:09:10 +00:00

(svn r20281) -Codechange: unify case scope closure + break coding style

This commit is contained in:
rubidium
2010-08-01 18:53:30 +00:00
parent 605f6d0ed3
commit e356cb9405
66 changed files with 427 additions and 215 deletions

View File

@@ -672,7 +672,8 @@ static char *FormatString(char *buff, const char *str, int64 *argv, uint casei,
}
break;
}
} break;
break;
}
case SCC_STRING1: { // {STRING1}
/* String that consumes ONE argument */
@@ -878,7 +879,8 @@ static char *FormatString(char *buff, const char *str, int64 *argv, uint casei,
case SCC_ZEROFILL_NUM: { // {ZEROFILL_NUM}
int64 num = GetInt64(&argv);
buff = FormatZerofillNumber(buff, num, GetInt64(&argv), last);
} break;
break;
}
case SCC_HEX: // {HEX}
buff = FormatHexNumber(buff, (uint64)GetInt64(&argv), last);