(svn r16434) -Cleanup: remove some dead code; primarily stuff that can't be reached like break after returns or break after functions that never return (i.e. NOT_REACHED)

This commit is contained in:
rubidium
2009-05-26 15:46:24 +00:00
parent 68042a6dde
commit d39f442bd0
15 changed files with 30 additions and 36 deletions

View File

@@ -598,7 +598,7 @@ uint32 FormatStringLinebreaks(char *str, int maxw)
}
} else {
switch (c) {
case '\0': return num + (size << 16); break;
case '\0': return num + (size << 16);
case SCC_SETX: str++; break;
case SCC_SETXY: str += 2; break;
case SCC_TINYFONT: size = FS_SMALL; break;