Fix an issue where newlines could potentially double-up when faced with whitespace

This commit is contained in:
toaster 2023-07-11 18:26:03 +01:00
parent c5dc430b50
commit 4675a9b059

View file

@ -2680,6 +2680,8 @@ void V_ScaledWordWrap(
for (; ( c = newstring[i] ); ++i)
{
right = 0;
switch (c)
{
case '\n':