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
|
@ -155,7 +155,7 @@ void MSG_WriteBits( msg_t *msg, int value, int bits ) {
|
|||
msg->cursize += 4;
|
||||
msg->bit += 32;
|
||||
} else {
|
||||
Com_Error(ERR_DROP, "can't read %d bits\n", bits);
|
||||
Com_Error(ERR_DROP, "can't read %d bits", bits);
|
||||
}
|
||||
} else {
|
||||
// fp = fopen("c:\\netchan.bin", "a");
|
||||
|
@ -213,7 +213,7 @@ int MSG_ReadBits( msg_t *msg, int bits ) {
|
|||
msg->readcount += 4;
|
||||
msg->bit += 32;
|
||||
} else {
|
||||
Com_Error(ERR_DROP, "can't read %d bits\n", bits);
|
||||
Com_Error(ERR_DROP, "can't read %d bits", bits);
|
||||
}
|
||||
} else {
|
||||
nbits = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue