Remove newlines from Com_Error message format strings, patch by DevHC
This commit is contained in:
parent
59271903a2
commit
c95bd0a684
20 changed files with 60 additions and 60 deletions
|
@ -273,7 +273,7 @@ int Huff_Receive (node_t *node, int *ch, byte *fin) {
|
|||
}
|
||||
if (!node) {
|
||||
return 0;
|
||||
// Com_Error(ERR_DROP, "Illegal tree!\n");
|
||||
// Com_Error(ERR_DROP, "Illegal tree!");
|
||||
}
|
||||
return (*ch = node->symbol);
|
||||
}
|
||||
|
@ -291,7 +291,7 @@ void Huff_offsetReceive (node_t *node, int *ch, byte *fin, int *offset) {
|
|||
if (!node) {
|
||||
*ch = 0;
|
||||
return;
|
||||
// Com_Error(ERR_DROP, "Illegal tree!\n");
|
||||
// Com_Error(ERR_DROP, "Illegal tree!");
|
||||
}
|
||||
*ch = node->symbol;
|
||||
*offset = bloc;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue