Skip to content
Snippets Groups Projects
Commit 9203b87d authored by Lactozilla's avatar Lactozilla :speech_balloon:
Browse files

Try fixing the clipboard

parent 522edc29
Branches
No related tags found
No related merge requests found
...@@ -2549,7 +2549,7 @@ const char *I_ClipboardPaste(void) ...@@ -2549,7 +2549,7 @@ const char *I_ClipboardPaste(void)
} }
else if (*i == '\t') else if (*i == '\t')
*i = ' '; // Tabs become spaces *i = ' '; // Tabs become spaces
else if (*i < 32 || (unsigned)*i > 127) else if ((unsigned)*i < 32)
*i = '?'; // Nonprintable chars become question marks *i = '?'; // Nonprintable chars become question marks
++i; ++i;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment