mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 08:51:24 +00:00
- update shadow warrior's PutStringInfo to put newlines in the console automatically (it was this, or update every use of PutStringInfo to have them)
This commit is contained in:
parent
52897c0cbb
commit
69ebd9a95d
1 changed files with 1 additions and 1 deletions
|
@ -437,7 +437,7 @@ void PutStringInfo(PLAYERp pp, const char *string)
|
||||||
if (!hud_messages)
|
if (!hud_messages)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Printf(PRINT_MEDIUM|PRINT_NOTIFY, "%s", string); // Put it in the console too
|
Printf(PRINT_MEDIUM|PRINT_NOTIFY, "%s\n", string); // Put it in the console too
|
||||||
if (hud_messages == 1) PutStringInfoLine(pp, string);
|
if (hud_messages == 1) PutStringInfoLine(pp, string);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue