mirror of
https://github.com/ioquake/ioq3.git
synced 2025-05-31 00:51:17 +00:00
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
|
@ -259,10 +259,10 @@ static sfx_t *S_FindName( const char *name ) {
|
|||
sfx_t *sfx;
|
||||
|
||||
if (!name) {
|
||||
Com_Error (ERR_FATAL, "S_FindName: NULL\n");
|
||||
Com_Error (ERR_FATAL, "S_FindName: NULL");
|
||||
}
|
||||
if (!name[0]) {
|
||||
Com_Error (ERR_FATAL, "S_FindName: empty name\n");
|
||||
Com_Error (ERR_FATAL, "S_FindName: empty name");
|
||||
}
|
||||
|
||||
if (strlen(name) >= MAX_QPATH) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue