mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
Fixed say prompt crash.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@799 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
aa642ce2a5
commit
157811e948
1 changed files with 2 additions and 1 deletions
|
@ -1035,6 +1035,7 @@ void Con_DrawNotify (void)
|
|||
}
|
||||
}
|
||||
}
|
||||
x++;
|
||||
}
|
||||
|
||||
while(s[x])
|
||||
|
@ -1065,7 +1066,7 @@ void Con_DrawNotify (void)
|
|||
}
|
||||
}
|
||||
|
||||
Draw_ColouredCharacter ( (x+skip)<<3, v, s[x]|M_COLOR_WHITE);
|
||||
Draw_ColouredCharacter ( (x+skip)<<3, v, s[x]|mask);
|
||||
x++;
|
||||
}
|
||||
Draw_ColouredCharacter ( (x+skip)<<3, v, 10+((int)(realtime*con_cursorspeed)&1)|M_COLOR_WHITE);
|
||||
|
|
Loading…
Reference in a new issue