mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
m32script: when printing error line, replace tabs with spaces.
git-svn-id: https://svn.eduke32.com/eduke32@4122 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
c2797e4b11
commit
491e67c1cc
1 changed files with 1 additions and 1 deletions
|
@ -4023,7 +4023,7 @@ void C_PrintErrorPosition()
|
|||
buf[nchars]=0;
|
||||
|
||||
for (i=0; i<nchars; i++)
|
||||
if (buf[i]==0x0a || buf[i]==0x0d)
|
||||
if (buf[i]==0x0a || buf[i]==0x0d || buf[i]=='\t')
|
||||
buf[i]=' ';
|
||||
|
||||
initprintf("%s\n", buf);
|
||||
|
|
Loading…
Reference in a new issue