mirror of
https://github.com/nzp-team/fteqw.git
synced 2025-01-18 14:31:52 +00:00
Fix for dev-cpp's internal compiler error...
Well, not just for dev-cpp, it really should have given a warning instead though. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1911 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
92fa37f03e
commit
0a738562ec
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ void M_PrintColoured (int cx, int cy, int colour, qbyte *str)
|
|||
{
|
||||
while (*str)
|
||||
{
|
||||
M_DrawColouredCharacter (cx, cy, (*str) + (colour<<CON_FGMASK));
|
||||
M_DrawColouredCharacter (cx, cy, (*str) + (colour<<CON_FGSHIFT));
|
||||
str++;
|
||||
cx += 8;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue